1
0
mirror of https://github.com/cc65/cc65.git synced 2024-09-27 04:54:54 +00:00
cc65/util/zlib/Makefile

28 lines
489 B
Makefile
Raw Normal View History

CC = $(CROSS_COMPILE)gcc
ifdef CROSS_COMPILE
$(info CC: $(CC))
endif
CFLAGS += -O3 -Wall -Wextra -Wno-char-subscripts $(USER_CFLAGS)
.PHONY: mostlyclean clean
zlib:
#zlib: warning
#zlib: deflater
warning:
@echo "util/zlib/deflater is no longer built by default"
@echo "use 'make deflater' to build if you need it"
@echo "note that you need zlib installed first"
deflater: deflater.c
$(CC) $(CFLAGS) -o deflater deflater.c -lz
mostlyclean clean:
$(RM) deflater
install zip: