092052ee93
git-svn-id: svn://svn.code.sf.net/p/loki-lib/code/trunk@739 7ec92016-0320-0410-acc4-a06ded1c099a
16 lines
250 B
Makefile
16 lines
250 B
Makefile
include ../Makefile.common
|
|
|
|
BIN := Test$(BIN_SUFFIX)
|
|
SRC := Test.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
|