source:
cppstreams/Makefile
Last change on this file was 2, checked in by gobi, 13 years ago | |
---|---|
File size: 310 bytes |
Line | |
---|---|
1 | CXXFLAGS+=-std=c++0x -W -Wall -pedantic |
2 | CPPFLAGS?=-O3 -fomit-frame-pointer |
3 | |
4 | TESTS=test_function\ |
5 | test_override\ |
6 | test_fibonacci\ |
7 | test_change\ |
8 | test_literals |
9 | |
10 | all: $(TESTS) |
11 | $(TESTS): % : %.o |
12 | $(CXX) $(LDFLAGS) -o $@ $< |
13 | $(TESTS:=.o): %.o : test_common.h stream.h |
14 | |
15 | clean: |
16 | $(RM) $(TESTS) $(TESTS:=.o) |
17 |
Note: See TracBrowser
for help on using the repository browser.