blob: 6796f30fe045a0c4616596488b52839f780b0b62 (
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
|