From d3e6537fe98ea828fd54112dfb94236d4faf48d4 Mon Sep 17 00:00:00 2001 From: Marcus Lankenau Date: Mon, 30 Nov 2015 14:58:10 +0100 Subject: [PATCH] changing the order of parameters in the linking helped to make it work with gcc --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 0ac09f4..b8f9ce4 100644 --- a/Makefile +++ b/Makefile @@ -17,7 +17,7 @@ all: gpx # Main target gpx: $(OBJECTS) - $(CC) $(L_FLAGS) $(OBJECTS) -o gpx + $(CC) $(OBJECTS) -o gpx $(L_FLAGS) # To obtain object files %.o: %.c