blob: e93243399a2e08117b81a678a1ce8441444e440b (
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
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
|