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 @@
# INC := -I include
# Pish
#
# Authors: Gregory
# Samantha Boyer
# Readme: README.md
#
all: main exec all: main exec
main: 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: exec:
gcc -o bin/pish build/*.o gcc -o bin/pish build/*.o
./bin/pish
clean: clean:
rm build/* rm build/*