mirror of
https://github.com/cc65/cc65.git
synced 2025-01-12 02:30:44 +00:00
bcc03acfc8
do we want to test they can be compiled, but also samples may use/require them. we might want to install them too, perhaps
18 lines
255 B
Makefile
18 lines
255 B
Makefile
|
|
.PHONY: mostlyclean clean
|
|
|
|
zlib: warning
|
|
#zlib: deflater
|
|
|
|
warning:
|
|
@echo "deflater needs zlib installed, use 'make deflater' to build"
|
|
|
|
deflater: deflater.c
|
|
$(CC) $(CFLAGS) -o deflater deflater.c -lz
|
|
|
|
mostlyclean clean:
|
|
$(RM) deflater
|
|
|
|
install zip:
|
|
|