From eaa4c942a46af837cff976f635695161cc74de6a Mon Sep 17 00:00:00 2001 From: wiire Date: Sat, 4 Apr 2015 19:27:45 +0200 Subject: [PATCH] Fixes #1 Fixed wrong dependency order. --- src/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Makefile b/src/Makefile index e611c8f..37497d2 100644 --- a/src/Makefile +++ b/src/Makefile @@ -6,7 +6,7 @@ PREFIX = $(DESTDIR)/usr/local BINDIR = $(PREFIX)/bin all: - $(CC) $(CCFLAGS) pixiewps.c -o $(TARGET) + $(CC) -o $(TARGET) pixiewps.c $(CCFLAGS) install: install -D pixiewps $(BINDIR)/$(TARGET)