about summary refs log tree commit diff stats
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile5
1 files changed, 3 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index b68d58a..3a2f147 100644
--- a/Makefile
+++ b/Makefile
@@ -1,8 +1,9 @@
 DEBUG=-g
 CFLAGS+=-Wall -Wextra -Wpedantic
 
+base64: base64.c
+	$(CC) $(CFLAGS) $(DEBUG) -o $@ base64.c
+
 %.c :
 	$(CC) $(CFLAGS) $(DEBUG) $@
 
-base64: base64.c
-	$(CC) $(CFLAGS) $(DEBUG) -o $@ base64.c