blob: a38351692175f952e4b87b6d66d48ff141ec4137 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
#
# Lanes/unit_tests/UnitTests.makefile
#
include ../Shared.makefile
_TARGET := UnitTests$(_LUAEXT)
_SRC := $(wildcard *.cpp) ../src/deep.cpp ../src/compat.cpp
_OBJ := $(_SRC:.cpp=.o)
#---
all: $(_TARGET)
$(info CC: $(CC))
$(info _TARGET: $(_TARGET))
$(info _SRC: $(_SRC))
_pch.hpp.gch: _pch.hpp
$(CC) -I "../.." $(CFLAGS) -x c++-header _pch.hpp -o _pch.hpp.gch
%.o: %.cpp _pch.hpp.gch *.h *.hpp UnitTests.makefile
$(CC) -I "../.." $(CFLAGS) -c $< -o $@
# Note: Don't put $(LUA_LIBS) ahead of $^; MSYS will not like that (I think)
#
$(_TARGET): $(_OBJ)
$(CC) $^ $(LIBS) $(LUA_LIBS) -o $@
clean:
-rm -rf $(_TARGET) *.o *.map *.gch
.PHONY: all clean
|