pish/Makefile

20 lines
201 B
Makefile

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