Skeleton of TestCase done.
[cppu.git] / Makefile
blobf4e4a18f786c8c7bf3faca9b7190d37aa01f9edd
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
15 cppu.o: cppu.cpp cppu.h
16 $(GCC) $(CXXFLAGS) $(DEBUGFLAGS) -c -o $@ $<
18 clean:
19 rm *.o
21 .PHONY: clean