04b3944796
git-svn-id: svn://svn.code.sf.net/p/loki-lib/code/trunk@648 7ec92016-0320-0410-acc4-a06ded1c099a
12 lines
204 B
Makefile
Executable file
12 lines
204 B
Makefile
Executable file
BIN = main$(BIN_SUFFIX)
|
|
SRC = main.cpp strong.cpp LockTest.cpp
|
|
OBJ = $(SRC:.cpp=.o)
|
|
|
|
.PHONY: all clean
|
|
all: $(BIN)
|
|
clean:
|
|
$(RM) $(BIN)
|
|
$(RM) $(OBJ)
|
|
|
|
$(BIN): $(OBJ)
|
|
$(CXX) $(LDFLAGS) -o $@ $^ $(LDLIBS)
|