pish/Makefile

20 lines
207 B
Makefile
Raw Normal View History

2022-10-09 18:23:57 -05:00
#
# Pish
#
# Authors: Gregory
2022-10-10 17:16:06 -05:00
# Samantha Boyer
2022-10-09 18:23:57 -05:00
# Readme: README.md
#
all: main exec
main:
gcc -c -o build/main.o src/main.c
exec:
gcc -o bin/pish build/*.o
./bin/pish
clean:
rm build/*