From b6ef994047130968f5b335715d6773983464d98f Mon Sep 17 00:00:00 2001 From: Kaz Kylheku Date: Thu, 4 Dec 2014 06:52:03 -0800 Subject: * Makefile: Adding empty .SUFFIXES: to disable built-in suffixes. Also set MAKEFLAGS to disable all built-in rules. The only one rule we used is .c to .o, so we provide it ourselves. --- Makefile | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'Makefile') diff --git a/Makefile b/Makefile index c3b1dd50..affa566b 100644 --- a/Makefile +++ b/Makefile @@ -53,6 +53,12 @@ OBJS += $(MPI_OBJS) PROG := txr +.SUFFIXES: +MAKEFLAGS += --no-builtin-rules + +%.o: %.c + $(CC) $(CFLAGS) -c -o $@ $< + $(PROG): $(OBJS) $(OBJS-y) $(CC) $(CFLAGS) -o $@ $^ -lm -- cgit v1.2.3