From 9a8cdad12e9b8113d6c4c54ea4a007dd60110ff7 Mon Sep 17 00:00:00 2001 From: Alessio Chiapperini Date: Tue, 28 May 2024 12:05:43 +0200 Subject: [PATCH] Explicitly write out inference rule for .c.o --- Makefile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Makefile b/Makefile index 0542656..838b382 100644 --- a/Makefile +++ b/Makefile @@ -29,3 +29,6 @@ install: ${PROG} ${PROG}.1 uninstall: ${RM} -f ${DESTDIR}${PREFIX}/bin/${PROG} ${RM} -f ${DESTDIR}${MANPREFIX}/man1/${PROG}.1.gz + +.c.o: + $(CC) -c $(CFLAGS) -o $@ $< -- 2.11.4.GIT