server/Makefile
Enno Rehling 09336e35e8 make tests
do not write a logfile during tests
2012-06-01 17:59:01 -07:00

16 lines
197 B
Makefile

all: tests
tests: bin/server
@bin/server -l/dev/null --tests
bin:
@mkdir bin
bin/server: bin/Makefile
cd bin ; make
bin/Makefile: CMakeLists.txt | bin
cd bin ; cmake ..
clean:
rm -rf bin