TestInterface renamed to TestBase - It's now abstract class no interface.
[cppu.git] / Makefile
blobdb12875f4f9ef06e8842f40fce41c158ef6038c4
1 SOURCES = cppu.cpp test.cpp
2 HEADERS = cppu.h
3 OBJS = cppu.o
6 GCC = g++
7 CXXFLAGS = -pedantic -Wall
8 DEBUGFLAGS = -g
10 all: test
12 test: $(OBJS) test.cpp
13 $(GCC) $(CXXFLAGS) $(DEBUGFLAGS) -o test $(OBJS) test.cpp
14 run_test:
15 ./test
17 cppu.o: cppu.cpp cppu.h
18 $(GCC) $(CXXFLAGS) $(DEBUGFLAGS) -c -o $@ $<
20 clean:
21 rm -f *.o
22 rm -f test
24 .PHONY: clean