summaryrefslogtreecommitdiffstats
path: root/make
diff options
context:
space:
mode:
Diffstat (limited to 'make')
-rw-r--r--make/ChangeLog4
-rw-r--r--make/custom/armulator.cfg4
2 files changed, 6 insertions, 2 deletions
diff --git a/make/ChangeLog b/make/ChangeLog
index 962a72dccb..7b39e2a69d 100644
--- a/make/ChangeLog
+++ b/make/ChangeLog
@@ -1,4 +1,8 @@
+2000-08-29 Joel Sherrill <joel.sherrill@OARcorp.com>
+
+ * custom/armulator.cfg: Corrected make-exe rule to pick up debug flags.
+
2000-08-17 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* make/custom/pck6.cfg: New file
* make/custom/pc486.cfg: Use -m486
diff --git a/make/custom/armulator.cfg b/make/custom/armulator.cfg
index 753acdd2ae..ef09b42e32 100644
--- a/make/custom/armulator.cfg
+++ b/make/custom/armulator.cfg
@@ -43,8 +43,8 @@ CFLAGS_DEBUG_V = -O1
#CFLAGS_DEBUG_V = -O1 -mmultiple -mstring -mstrict-align
define make-exe
-# $(CC) -v -static -Wl,-Map -Wl,Mapfile -Wl,-T -Wl,linkcmds -Wl,-N -o $(basename $@).obj $(LINK_OBJS) $(LINK_LIBS)
- $(LINK.c) $(LDLIBS) -o $@ $(LINK_OBJS) $(LINK_LIBS)
+ $(LINK.c) $(AM_CFLAGS) $(AM_LDFLAGS) -o $@ \
+ $(LINK_OBJS) $(LINK_LIBS)
$(NM) -g -n $(basename $@).exe > $(basename $@).num
$(SIZE) $(basename $@).exe