summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorFlorian Jung <flo@windfisch.org>2014-09-06 23:14:52 +0200
committerFlorian Jung <flo@windfisch.org>2014-09-06 23:14:52 +0200
commit1fbf21ce79b4ea3c37e1b6dfc7a038a700d75d8c (patch)
treee6761bb61b83476a24d289ff7e3a7b8301a20c56 /Makefile
parentb9dcd4d5e8c910fad32f8884a4c83872d77807b8 (diff)
fixed makefile to work with gnumake
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index a087fbc..7d7777c 100644
--- a/Makefile
+++ b/Makefile
@@ -13,15 +13,15 @@ joystick.o: joystick.cpp os.h
g++ `pkg-config --cflags opencv` -g -c $<
detect_road_borders: detect_road_borders.cpp
- g++ `pkg-config --libs --cflags opencv` -g $> -o $@
+ g++ `pkg-config --libs --cflags opencv` -g $^ -o $@
detect_road_borders_with_horizon_steerer: detect_road_borders_with_horizon_steerer.cpp horizon_steerer.o util.o
- g++ `pkg-config --libs --cflags opencv` -g $> -o $@
+ g++ `pkg-config --libs --cflags opencv` -g $^ -o $@
test_detect: detect_road_borders
./detect_road_borders test.mpg
mariokart: mariokart.o os.h joystick.o xorg_grabber.o road_thresholder.o horizon_steerer.o naive_steerer.o steer_accumulator.o util.o
- g++ `pkg-config --libs --cflags opencv` -lxcb -lpthread -g $> -o $@
+ g++ `pkg-config --libs --cflags opencv` -lxcb -lpthread -g $^ -o $@