blob: c5374f31d5bb076c12aa9740c8047e7b8cd32434 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
CC=g++
CFLAGS=-Wall -c -g
all: testbase
testbase: testbase.o base.o exceptions.o
$(CC) testbase.o base.o exceptions.o -o testbase -lcppunit
testbase.o: testbase.cpp
$(CC) $(CFLAGS) testbase.cpp
base.o: ../src/simpl/base.cpp
$(CC) $(CFLAGS) ../src/simpl/base.cpp
exceptions.o: ../src/simpl/exceptions.cpp
$(CC) $(CFLAGS) ../src/simpl/exceptions.cpp
clean:
rm -rf *.o testbase
|