From 0517b7d93b4d707fea1a2e154977ba813f38f1ad Mon Sep 17 00:00:00 2001 From: Kaz Kylheku Date: Sun, 7 Dec 2014 09:36:40 -0800 Subject: Debug builds optional with --debug-also config option. * Makefile (PROG): Variable removed, now set in config.make. (all): Target now depends on $(BUILD_TARGETS) variable, set in config.make. * configure (debug_also) New variable. (gen_config_make): Generate PROG and BUILD_TARGETS variables. --- Makefile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 12702c18..9b4dcf54 100644 --- a/Makefile +++ b/Makefile @@ -60,7 +60,6 @@ OBJS += $(MPI_OBJS) DBG_OBJS = $(call ADD_CONF,dbg,$(OBJS) $(OBJS-y)) OPT_OBJS = $(call ADD_CONF,opt,$(OBJS) $(OBJS-y)) -PROG := txr TXR := ./$(PROG) .SUFFIXES: @@ -77,7 +76,7 @@ opt/%.o: %.c %.o: %.c $(CC) $(OPT_FLAGS) $(CFLAGS) -c -o $@ $< -all: $(PROG) $(PROG)-dbg +all: $(BUILD_TARGETS) $(PROG): $(OPT_OBJS) $(CC) $(OPT_FLAGS) $(CFLAGS) -o $@ $^ -lm -- cgit v1.2.3