diff options
Diffstat (limited to 'GNUmakefile')
-rw-r--r-- | GNUmakefile | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/GNUmakefile b/GNUmakefile deleted file mode 100644 index 56d8b79..0000000 --- a/GNUmakefile +++ /dev/null @@ -1,23 +0,0 @@ -.PHONY: clean - -all: detect_road_borders mariokart - -clean: - rm -f *.o mariokart detect_road_borders - -.cpp.o: - g++ `pkg-config --cflags opencv` -g -c $< - -detect_road_borders: detect_road_borders.cpp - g++ `pkg-config --libs --cflags opencv` -g detect_road_borders.cpp -o detect_road_borders - -detect_road_borders_with_horizon_steerer: detect_road_borders_with_horizon_steerer.cpp util.cpp horizon_steerer.cpp - g++ `pkg-config --libs --cflags opencv` -g detect_road_borders_with_horizon_steerer.cpp util.cpp horizon_steerer.cpp -o detect_road_borders_with_horizon_steerer - -test_detect: detect_road_borders - ./detect_road_borders test.mpg - - -mariokart: mariokart.cpp os.h joystick.cpp xorg_grabber.cpp road_thresholder.cpp horizon_steerer.cpp naive_steerer.cpp steer_accumulator.cpp util.cpp - g++ `pkg-config --libs --cflags opencv` -lxcb -lpthread -g mariokart.cpp os.h joystick.cpp xorg_grabber.cpp road_thresholder.cpp horizon_steerer.cpp naive_steerer.cpp steer_accumulator.cpp util.cpp -o mariokart - |