X-Git-Url: http://plrg.eecs.uci.edu/git/?p=c11concurrency-benchmarks.git;a=blobdiff_plain;f=cdschecker_modified_benchmarks%2Fms-queue%2FMakefile;fp=cdschecker_modified_benchmarks%2Fms-queue%2FMakefile;h=c42add1410faa8aa1b32f1919fd60371419d59ab;hp=0000000000000000000000000000000000000000;hb=1491fc3840762ae57661f247ae363be83e0132a2;hpb=6e2a27bd9e36f65acd47ac764bb0373b76c386a3 diff --git a/cdschecker_modified_benchmarks/ms-queue/Makefile b/cdschecker_modified_benchmarks/ms-queue/Makefile new file mode 100644 index 0000000..c42add1 --- /dev/null +++ b/cdschecker_modified_benchmarks/ms-queue/Makefile @@ -0,0 +1,19 @@ +include ../benchmarks.mk + +TESTNAME = ms-queue + +HEADERS = my_queue.h +OBJECTS = main.o my_queue.o + +CXXFLAGS += -I /scratch/fuzzer/random-fuzzer/include + +all: $(TESTNAME) + +$(TESTNAME): $(HEADERS) $(OBJECTS) + $(CC) -o $@ $(OBJECTS) $(CFLAGS) $(LDFLAGS) + +%.o: %.c + $(CC) -c -o $@ $(CFLAGS) + +clean: + rm -f $(TESTNAME) *.o