Moved info to README and removed program autorun

This commit is contained in:
TriantaTV 2022-10-10 18:51:12 -05:00
parent 0ee8a944c4
commit e314d06c21

View File

@ -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/*