16 lines
259 B
Makefile
16 lines
259 B
Makefile
INC := -I include
|
|
|
|
all: compile link
|
|
|
|
compile:
|
|
gcc $(INC) -c -o build/main.o src/main.c
|
|
gcc $(INC) -c -o build/Integrated.o src/Integrated.c
|
|
gcc $(INC) -c -o build/Pish.o src/Pish.c
|
|
|
|
link:
|
|
gcc -o bin/pish.out build/*.o
|
|
|
|
clean:
|
|
rm build/*.o
|
|
rm bin/*.out
|