mirror of
https://github.com/FIX94/hbc.git
synced 2024-11-26 20:44:19 +01:00
12 lines
166 B
Makefile
12 lines
166 B
Makefile
|
all: banner.bin
|
||
|
|
||
|
banner.bin: twintig title banner.ppm icon.ppm
|
||
|
@$(CURDIR)/twintig
|
||
|
|
||
|
twintig: twintig.c
|
||
|
@gcc -g -O2 -Wall $< -o $@
|
||
|
|
||
|
clean:
|
||
|
rm -f twintig banner.bin
|
||
|
|