Use 'ao-dbg' instead of 's51' to communicate with TeleMetrum
[fw/sdcc] / Bcc.inc
diff --git a/Bcc.inc b/Bcc.inc
index 29b4d079cf04316016b206dc92a6ff8e10de6be7..a2ff0f6faba97daf3b9228e60ed3a965e7bab326 100644 (file)
--- a/Bcc.inc
+++ b/Bcc.inc
@@ -1,8 +1,14 @@
 #Generic rules and options for building with Borland C++
 
+.cacheautodepend
+
+YACC = bison
+LEX = flex
+CC = bcc32
+
 SLIB = $(PRJDIR)/support/Util
 
-OFLAGS = -6 -O2 -g0 -w-proto
+OFLAGS = -6 -O2 -w-proto -g0
 
 .c.obj:
-        BCC32 -c -o$@ $(OFLAGS) $(CFLAGS) $(CPPFLAGS) -I$(SLIB) $<
+        $(CC) -c -o$@ $(OFLAGS) $(CFLAGS) $(CPPFLAGS) -I$(SLIB) $<