source: cppstreams/Makefile

Last change on this file was 2, checked in by gobi, 13 years ago

import

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