From 6a4caff7b5ca02d44f8fa830cf95c7dc60dbafaf Mon Sep 17 00:00:00 2001 From: Symisc Systems Date: Mon, 19 Feb 2018 02:12:01 +0100 Subject: [PATCH] Update Makefile --- Makefile | 13 ++----------- 1 file changed, 2 insertions(+), 11 deletions(-) diff --git a/Makefile b/Makefile index 075f0a7..735c9a0 100644 --- a/Makefile +++ b/Makefile @@ -1,12 +1,3 @@ -CC = gcc -CFLAGS = -I -W -Wall -RM = rm -f - - -default: all - -all: ph7 - -ph7: ph7.c - $(CC) $(CFLAGS) -o ph7 ph7.c -Ofast +hellomake: ph7.c + gcc -o ph7 ph7.c -W -Wall -Ofast -I.