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 c8ffe20b was 134b86a, checked in by Peter A. Buhr <pabuhr@…>, 11 years ago |
add compiler flag to driver, update examples, fix unnamed bit fields
|
-
Property mode
set to
100644
|
File size:
1.0 KB
|
Line | |
---|
1 | CC=../../bin/cfa
|
---|
2 | CFLAGS = -g -Wunused-function -MD
|
---|
3 | MAKEFILE_NAME = ${firstword ${MAKEFILE_LIST}} # makefile name
|
---|
4 |
|
---|
5 | OBJECTS1 = iostream.o fstream.o fstream_test.o
|
---|
6 | EXEC1 = fstream_test
|
---|
7 |
|
---|
8 | OBJECTS2 = vector_int.o fstream.o iostream.o array.o iterator.o vector_test.o
|
---|
9 | EXEC2 = vector_test
|
---|
10 |
|
---|
11 | OBJECTS = ${OBJECTS1} ${OBJECTS2} # all object files
|
---|
12 | DEPENDS = ${OBJECTS:.o=.d} # substitute ".o" with ".d"
|
---|
13 | EXECS = ${EXEC1} ${EXEC2} # all executables
|
---|
14 |
|
---|
15 | ########## Targets ##########
|
---|
16 |
|
---|
17 | .PHONY : all clean # not file names
|
---|
18 |
|
---|
19 | all : ${EXECS} # build all executables
|
---|
20 |
|
---|
21 | ${EXEC1} : ${OBJECTS1} # link step 1st executable
|
---|
22 | ${CC} ${CCFLAGS} $^ -o $@ # additional object files before $^
|
---|
23 |
|
---|
24 | ${EXEC2} : ${OBJECTS2} # link step 2nd executable
|
---|
25 | ${CC} ${CCFLAGS} $^ -o $@ # additional object files before $^
|
---|
26 |
|
---|
27 | ${OBJECTS} : ${MAKEFILE_NAME} # OPTIONAL : changes to this file => recompile
|
---|
28 |
|
---|
29 | -include ${DEPENDS} # include *.d files containing program dependences
|
---|
30 |
|
---|
31 | clean : # remove files that can be regenerated
|
---|
32 | rm -f ${DEPENDS} ${OBJECTS} ${EXECS} *.class
|
---|
Note:
See
TracBrowser
for help on using the repository browser.