Makefile: Remove headers as dependency for binary target.

This commit is contained in:
Nicolás A. Ortega Froysa 2024-09-05 21:15:12 +02:00
parent 8d2b27376f
commit 0b9c9010b3

View File

@ -37,7 +37,7 @@ endif
%.o:%.c $(HDRS) %.o:%.c $(HDRS)
$(CC) -c -o $@ $< $(CFLAGS) -DVERSION=\"$(VERSION)\" $(CC) -c -o $@ $< $(CFLAGS) -DVERSION=\"$(VERSION)\"
menu-helper: $(OBJS) $(HDRS) menu-helper: $(OBJS)
$(CC) -o $@ $^ $(LDFLAGS) $(CC) -o $@ $^ $(LDFLAGS)
.PHONY: clean distclean install .PHONY: clean distclean install