1 |
# Steering Wheel Remote |
2 |
# |
3 |
# Douglas Thrift |
4 |
# |
5 |
# $Id$ |
6 |
|
7 |
common := $(shell realpath $(CURDIR)/../Common) |
8 |
|
9 |
CPPFLAGS := -MD -I/usr/local/include -I$(common) |
10 |
CXXFLAGS := -Wall -pedantic -g -O2 |
11 |
LDFLAGS := -L/usr/local/lib -L$(common) |
12 |
LDLIBS := -lpcre -ltruck |
13 |
|
14 |
.PHONY: all clean |
15 |
|
16 |
all: SteeringWheelRemote |
17 |
|
18 |
SteeringWheelRemote: SteeringWheelRemote.cpp $(common)/libtruck.a |
19 |
$(CXX) $(CPPFLAGS) $(CXXFLAGS) $(LDFLAGS) -o $@ $< $(LOADLIBES) $(LDLIBS) |
20 |
|
21 |
$(common)/libtruck.a: $(common)/posix.o $(common)/regex.o |
22 |
$(MAKE) -C $(@D) $(@F) |
23 |
|
24 |
-include *.d |
25 |
|
26 |
clean: |
27 |
rm -f SteeringWheelRemote *.core *.d |