pish/Makefile

20 lines
201 B
Makefile
Raw Normal View History

2022-10-09 18:23:57 -05:00
#
# Pish
#
# Authors: Gregory
# Samantha
# 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/*