* device/lib/pic16/Makefile.common.in: added $(MM) to fix `make clean`
[fw/sdcc] / Makefile.common.in
index 73ef6bec513c0911675064559b29653ca6a07aef..ea00cf7f6312f1019dd8d281ee9cea4e238b4f83 100644 (file)
@@ -2,9 +2,6 @@
 #
 #
 
-# HACK
-PORT           = mcs51
-
 # Version
 VERSION         = @VERSION@
 VERSIONHI       = @VERSIONHI@
@@ -17,10 +14,10 @@ CC          = @CC@
 CPP            = @CPP@
 RANLIB         = @RANLIB@
 INSTALL                = @INSTALL@
-YACC            = @YACC@ 
+YACC            = @YACC@
 LEX             = @LEX@ 
 AWK             = @AWK@
-
+STRIP           = @STRIP@
 prefix          = @prefix@
 exec_prefix     = @exec_prefix@
 bindir          = @bindir@
@@ -32,18 +29,37 @@ man1dir         = $(mandir)/man1
 man2dir         = $(mandir)/man2
 infodir         = @infodir@
 srcdir          = @srcdir@
+docdir          = @docdir@
+DESTDIR         =
+
+include_dir_suffix = @include_dir_suffix@
+lib_dir_suffix     = @lib_dir_suffix@
+
+# Modules to enable/disable
+OPT_ENABLE_UCSIM = @OPT_ENABLE_UCSIM@
+OPT_ENABLE_DEVICE_LIB_BUILD = @OPT_ENABLE_DEVICE_LIB_BUILD@
+OPT_ENABLE_PACKIHX = @OPT_ENABLE_PACKIHX@
+
+SLIB                   = $(PRJDIR)/support/Util
+
+EXEEXT          = @EXEEXT@
+transform       = @program_transform_name@
 
 # Flags
-DEFS            = $(subs -DHAVE_CONFIG_H,,@DEFS@)
-CPPFLAGS        = @CPPFLAGS@ -I$(PRJDIR) -I$(PRJDIR)/support
-CFLAGS          = @CFLAGS@ -Wall
+
+DEFS           += $(subs -DHAVE_CONFIG_H,,@DEFS@)
+CPPFLAGS       += $(INCLUDEFLAGS) -I. -I$(PRJDIR) -I$(SLIB)
+CFLAGS         += -Wall @CFLAGS@
+LDFLAGS        += @LDFLAGS@
 M_OR_MM         = @M_OR_MM@
 
+EXTRALIBS      += @LIBS@
+
 # Shared settings between all the sub Makefiles
 # Done here so that we don't have to start a Make from the top levelport
 # directory.
 
 # Library compilation options
-SCC = $(PRJDIR)/src/sdcc
-SAS = $(PRJDIR)/as/$(PORT)/as
-CLEANSPEC = *.lst *.asm *.sym *~ *.cdb
+CLEANSPEC = *.lst *.asm *.sym *~ *.cdb *.dep *.rul
+
+OBJ = $(SOURCES:.c=.o)