summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 6 insertions, 0 deletions
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