Added make files for projects.

git-svn-id: svn://svn.code.sf.net/p/loki-lib/code/trunk@1150 7ec92016-0320-0410-acc4-a06ded1c099a
This commit is contained in:
rich_sposato 2011-10-17 19:55:23 +00:00
parent 3cb55b723d
commit b97cbd0a32
7 changed files with 115 additions and 0 deletions

16
test/SafeBits/Makefile Normal file
View file

@ -0,0 +1,16 @@
include ../Makefile.common
BIN := SafeBitTest$(BIN_SUFFIX)
SRC := SafeBitTest.cpp
OBJ := $(SRC:.cpp=.o)
.PHONY: all clean
all: $(BIN)
clean: cleandeps
$(RM) $(BIN)
$(RM) $(OBJ)
$(BIN): $(OBJ)
$(CXX) $(LDFLAGS) -o $@ $^ $(LDLIBS)
include ../../Makefile.deps