source: doc/generic_types/evaluation/Makefile @ 75ac87e

ADTaaron-thesisarm-ehast-experimentalcleanup-dtorsdeferred_resndemanglerenumforall-pointer-decayjacob/cs343-translationjenkins-sandboxnew-astnew-ast-unique-exprnew-envno_listpersistent-indexerpthread-emulationqualifiedEnumresolv-newwith_gc
Last change on this file since 75ac87e was 75ac87e, checked in by Aaron Moss <a3moss@…>, 7 years ago

Fix CFA benchmark to compile

  • Property mode set to 100644
File size: 476 bytes
Line 
1CFA=my-cfa
2
3# %.o : %.cf
4#       $(CFA) -c $(CFLAGS) $(CPPFLAGS) $< -o $@
5
6cfa-stack.o: cfa-stack.c cfa-stack.h
7        $(CFA) -c $(CFLAGS) $(CPPFLAGS) $< -o $@
8
9c-bench: c-bench.c bench.h c-stack.o
10        $(CC) $(CFLAGS) $(CPPFLAGS) -o $@ $< c-stack.o
11
12cpp-bench: cpp-bench.cpp bench.h cpp-stack.h
13        $(CXX) $(CXXFLAGS) $(CPPFLAGS) -o $@ $<
14
15cfa-bench: cfa-bench.c bench.h cfa-stack.o
16        $(CFA) $(CFLAGS) $(CPPFLAGS) -o $@ $< cfa-stack.o
17
18clean:
19        -rm *.o
20        -rm c-bench
21        -rm cpp-bench
22        -rm cfa-bench
Note: See TracBrowser for help on using the repository browser.