diff --git a/Makefile b/Makefile index eea36c6..019fca5 100644 --- a/Makefile +++ b/Makefile @@ -1,19 +1,13 @@ -# -# Pish -# -# Authors: Gregory -# Samantha Boyer -# Readme: README.md -# +INC := -I include all: main exec main: - gcc -c -o build/main.o src/main.c + gcc $(INC) -c -o build/main.o src/main.c + gcc $(INC) -c -o build/Pish.o src/Pish.c exec: gcc -o bin/pish build/*.o - ./bin/pish clean: rm build/*