aboutsummaryrefslogtreecommitdiffstats
path: root/test/bruisertest/makefile
blob: cb237e4bc72544fd52988a6325b7f9b6f7d3e338 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
include ../../macros.mk

BRUISER_TEST=test

.DEFAULT:all clean

all:$(BRUISER_TEST)

.cpp.o:
	$(CXX) $(CXX_FLAGS) -c $< -o $@

$(BRUISER_TEST): test.cpp
	$(CXX) $^ $(LD_FLAGS) -o $@

clean:
	rm -f *.o *~ $(BRUISER_TEST)

help:
	@echo "the makfile for the bruiser test file."
	@echo "there is the taget itself, all and clean."