CC = gcc CFLAGS += -s -fstrength-reduce -Wall TARGETS = udate2str all: $(TARGETS) strip -R .note -R .comment $(TARGETS) clean: rm -f $(TARGETS) udate2str: udate2str.c $(CC) $(CFLAGS) udate2str.c -o udate2str