13 lines
174 B
Makefile
13 lines
174 B
Makefile
all: cept.o main.o
|
|
gcc -Werror ./*.o -o miniBTX -lcodebananas
|
|
|
|
main.o: main.c
|
|
gcc -Werror -c main.c
|
|
|
|
cept.o: cept.c
|
|
gcc -Werror -c cept.c
|
|
|
|
|
|
clean:
|
|
rm ./*.o
|
|
rm ./miniBTX
|