pish/Makefile

14 lines
183 B
Makefile
Raw Normal View History

INC := -I include
2022-10-09 18:23:57 -05:00
all: main exec
main:
gcc $(INC) -c -o build/main.o src/main.c
gcc $(INC) -c -o build/Pish.o src/Pish.c
2022-10-09 18:23:57 -05:00
exec:
gcc -o bin/pish.out build/*.o
2022-10-09 18:23:57 -05:00
clean:
rm build/*