bug 435068: fix this code: d = (0 ? 4 : 8) + 1;
[fw/sdcc] / Bcc.inc
diff --git a/Bcc.inc b/Bcc.inc
index 68c872d8074cd67c20bee55293d8b280bf53b288..29b4d079cf04316016b206dc92a6ff8e10de6be7 100644 (file)
--- a/Bcc.inc
+++ b/Bcc.inc
@@ -1,6 +1,8 @@
 #Generic rules and options for building with Borland C++
 
+SLIB = $(PRJDIR)/support/Util
+
 OFLAGS = -6 -O2 -g0 -w-proto
 
 .c.obj:
-        BCC32 -c $(OFLAGS) $(CFLAGS) $(CPPFLAGS) $<
+        BCC32 -c -o$@ $(OFLAGS) $(CFLAGS) $(CPPFLAGS) -I$(SLIB) $<