From 1fbf21ce79b4ea3c37e1b6dfc7a038a700d75d8c Mon Sep 17 00:00:00 2001 From: Florian Jung Date: Sat, 6 Sep 2014 23:14:52 +0200 Subject: fixed makefile to work with gnumake --- Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'Makefile') 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 $@ -- cgit v1.2.3