start work on enabling VMCORE and adding support in ustd
[ust.git] / ustd / Makefile
index 0de51f87b6f3884bd8910bc6894876b65fa173fa..fb5c0e30d04338a137a03a4b7e93d307974a8c54 100644 (file)
@@ -1,6 +1,17 @@
+CFLAGS="-g -Wall"
+
 all: ustd
 
-ustd: ustd.c
-       gcc -g -Wall -I ../libustcomm -I. -I ../../../../libkcompat -lpthread -o ustd ustd.c ../libustcomm/ustcomm.c
+lowlevel.o: lowlevel.c
+       gcc -g -Wall -I ../libustcomm -I. -I ../../../../libkcompat -I ../libtracing -I ../share -I ../../../../urcu -I ../libmarkers -lpthread -c lowlevel.c
+
+ustd.o: ustd.c
+       gcc -g -Wall -I ../libustcomm -I. -I ../../../../libkcompat -lpthread -c ustd.c
+
+ustcomm.o: ../libustcomm/ustcomm.c
+       gcc -g -Wall -I ../share ../libustcomm/ustcomm.c
+
+ustd: ustd.o lowlevel.o ustcomm.o
+       gcc -g -Wall -lpthread -o ustd ustd.o lowlevel.o ustcomm.o
 
 .PHONY: ustd
This page took 0.024102 seconds and 4 git commands to generate.