ViewVC Help
View File | Revision Log | Show Annotations | Download File | View Changeset | Root Listing
root/truck/SteeringWheelRemote/GNUmakefile
Revision: 2
Committed: 2007-04-25T21:28:10-07:00 (16 years, 11 months ago) by douglas
File size: 421 byte(s)
Log Message:
Woo!

File Contents

# Content
1 # Steering Wheel Remote
2 #
3 # Douglas Thrift
4 #
5 # $Id$
6
7 common := $(shell realpath $(CURDIR)/../Common)
8
9 CPPFLAGS := -MD -I$(common)
10 CXXFLAGS := -Wall -pedantic -g -O2
11 LDFLAGS := -L$(common)
12 LDLIBS := -ltruck
13
14 all: SteeringWheelRemote
15
16 SteeringWheelRemote: SteeringWheelRemote.cpp
17 $(MAKE) -C $(common)
18 $(CXX) $(CPPFLAGS) $(CXXFLAGS) $(LDFLAGS) -o $@ $+ $(LOADLIBES) $(LDLIBS)
19
20 clean:
21 rm -f SteeringWheelRemote *.core *.d

Properties

Name Value
svn:keywords Id