ADT
aaron-thesis
arm-eh
ast-experimental
cleanup-dtors
ctor
deferred_resn
demangler
enum
forall-pointer-decay
gc_noraii
jacob/cs343-translation
jenkins-sandbox
memory
new-ast
new-ast-unique-expr
new-env
no_list
persistent-indexer
pthread-emulation
qualifiedEnum
resolv-new
string
with_gc
|
Last change
on this file since a0d9f94 was 51b73452, checked in by Peter A. Buhr <pabuhr@…>, 11 years ago |
|
initial commit
|
-
Property mode
set to
100644
|
|
File size:
607 bytes
|
| Line | |
|---|
| 1 | CC=cfa
|
|---|
| 2 | CFLAGS=-g
|
|---|
| 3 |
|
|---|
| 4 | %.i: %.c
|
|---|
| 5 | -$(CC) $(CFLAGS) -CFA $< > $@
|
|---|
| 6 |
|
|---|
| 7 | %.o: %.i
|
|---|
| 8 | $(CC) $(CFLAGS) -c -o $@ $<
|
|---|
| 9 |
|
|---|
| 10 | all: vector_test
|
|---|
| 11 |
|
|---|
| 12 | vector_test: vector_test.o vector_int.o fstream.o iostream.o array.o iterator.o
|
|---|
| 13 | fstream_test: fstream_test.o fstream.o iostream.o
|
|---|
| 14 |
|
|---|
| 15 | array.o: array.i array.h iterator.h
|
|---|
| 16 | iterator.o: iterator.i iterator.h iostream.h
|
|---|
| 17 | vector_test.o: vector_test.i vector_int.h iostream.h fstream.h
|
|---|
| 18 | vector_int.o: vector_int.i vector_int.h
|
|---|
| 19 | fstream_test.o: fstream_test.i iostream.h fstream.h
|
|---|
| 20 | fstream.o: fstream.i iostream.h fstream.h
|
|---|
| 21 | iostream.o: iostream.i iostream.h
|
|---|
| 22 |
|
|---|
| 23 | clean:
|
|---|
| 24 | rm -f fstream_test vector_test *.i *.o
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.