Small Makefile improvement.

This commit is contained in:
LoRd_MuldeR 2022-09-15 21:58:05 +02:00
parent 1b8e9aba42
commit 7581eccaa0

View File

@ -40,10 +40,11 @@ ifeq ($(STATIC),1)
CFLAGS += -static
endif
ifeq ($(STRIP),1)
CFLAGS += -s
endif
.PHONY: all
all:
$(CC) $(CFLAGS) -o $(OUTNAME) crc64.c
ifeq ($(STRIP),1)
strip $(OUTNAME)
endif