source: translator/examples/Makefile @ 93885663

ADTaaron-thesisarm-ehast-experimentalcleanup-dtorsctordeferred_resndemanglerenumforall-pointer-decaygc_noraiijacob/cs343-translationjenkins-sandboxmemorynew-astnew-ast-unique-exprnew-envno_listpersistent-indexerpthread-emulationqualifiedEnumresolv-newstringwith_gc
Last change on this file since 93885663 was 51b7345, checked in by Peter A. Buhr <pabuhr@…>, 10 years ago

initial commit

  • Property mode set to 100644
File size: 607 bytes
Line 
1CC=cfa
2CFLAGS=-g
3
4%.i: %.c
5        -$(CC) $(CFLAGS) -CFA $< > $@
6
7%.o: %.i
8        $(CC) $(CFLAGS) -c -o $@ $<
9
10all: vector_test
11
12vector_test: vector_test.o vector_int.o fstream.o iostream.o array.o iterator.o
13fstream_test: fstream_test.o fstream.o iostream.o
14
15array.o: array.i array.h iterator.h
16iterator.o: iterator.i iterator.h iostream.h
17vector_test.o: vector_test.i vector_int.h iostream.h fstream.h
18vector_int.o: vector_int.i vector_int.h
19fstream_test.o: fstream_test.i iostream.h fstream.h
20fstream.o: fstream.i iostream.h fstream.h
21iostream.o: iostream.i iostream.h
22
23clean:
24        rm -f fstream_test vector_test *.i *.o
Note: See TracBrowser for help on using the repository browser.