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.