Codebase list main-menu / be4aea1
Makefile: Inherit CFLAGS and LDFLAGS from environment (should notably fix reproducibility) Samuel Thibault 2 years ago
2 changed file(s) with 10 addition(s) and 2 deletion(s). Raw diff Collapse all Expand all
0 CFLAGS=-Wall -W -g -D_GNU_SOURCE
0 CFLAGS?=-Wall -W -g
1 CFLAGS += -D_GNU_SOURCE
12 OBJS=$(subst .c,.o,$(wildcard *.c))
23 BIN=main-menu
34 LIBS=-ldebconfclient -ldebian-installer
1112 all: $(BIN)
1213
1314 $(BIN): $(OBJS)
14 $(CC) -o $(BIN) $(OBJS) $(LIBS)
15 $(CC) $(LDFLAGS) -o $(BIN) $(OBJS) $(LIBS)
1516
1617 demo: $(BIN)
1718 ln -sf debian/templates main-menu.templates
0 main-menu (1.63) UNRELEASED; urgency=medium
1
2 * Makefile: Inherit flags from environment (should notably fix
3 reproducibility).
4
5 -- Samuel Thibault <sthibault@debian.org> Sun, 05 Sep 2021 14:05:00 +0200
6
07 main-menu (1.62) unstable; urgency=medium
18
29 * Team upload