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