X-Git-Url: http://plrg.eecs.uci.edu/git/?p=cdsspec-compiler.git;a=blobdiff_plain;f=output%2Fms-queue%2FMakefile;fp=output%2Fms-queue%2FMakefile;h=d75881c8094acd1173d6cacb70d7ae6579e2d6e8;hp=78ea6a644d60604145a0ac08811f29cbe33ab9e7;hb=dddb190f43cd31d29dd0ce06739fc9cd22f25f73;hpb=03a40f095e6c8a1af2384093d164c15146c55f95 diff --git a/output/ms-queue/Makefile b/output/ms-queue/Makefile index 78ea6a6..d75881c 100644 --- a/output/ms-queue/Makefile +++ b/output/ms-queue/Makefile @@ -1,6 +1,6 @@ include ../benchmarks.mk -TESTNAME = main testcase1 testcase2 +TESTNAME = main testcase1 testcase2 testcase3 HEADERS = my_queue.h OBJECTS = main.o my_queue.o @@ -16,6 +16,9 @@ testcase1: $(HEADERS) my_queue.o testcase1.o testcase2: $(HEADERS) my_queue.o testcase2.o $(CC) -o $@ my_queue.o testcase2.o $(CFLAGS) $(LDFLAGS) +testcase3: $(HEADERS) my_queue.o testcase3.o + $(CC) -o $@ my_queue.o testcase3.o $(CFLAGS) $(LDFLAGS) + %.o: %.c $(CC) -c -o $@ $< $(CFLAGS)