Version 0.3.2-pre1
[fw/sdcc] / sim / ucsim / main_in.mk
index d3d7800ada95d1415f63268a54dda8aa578f886e..1a1de04992b8ffcb97867b8c64453e549a2a1514 100644 (file)
@@ -14,14 +14,19 @@ RANLIB              = @RANLIB@
 INSTALL                = @INSTALL@
 
 PRJDIR         = .
+SIMDIR         = sim.src
 
 DEFS            = $(subs -DHAVE_CONFIG_H,,@DEFS@)
 # FIXME: -Imcs51 must be removed!!!
-CPPFLAGS        = @CPPFLAGS@ -I$(PRJDIR)
+CPPFLAGS        = @CPPFLAGS@ -I$(PRJDIR) -I$(PRJDIR)/$(SIMDIR)
 CFLAGS          = @CFLAGS@ -I$(PRJDIR) -Wall
 CXXFLAGS        = @CXXFLAGS@ -I$(PRJDIR) -Wall
 M_OR_MM         = @M_OR_MM@
 
+LIB_LIST       = sim cmd sim util
+UCSIM_LIBS     = $(patsubst %,-l%,$(LIB_LIST))
+UCSIM_LIB_FILES        = $(patsubst %,lib%.a,$(LIB_LIST))
+
 prefix          = @prefix@
 exec_prefix     = @exec_prefix@
 bindir          = @bindir@
@@ -35,6 +40,10 @@ infodir         = @infodir@
 srcdir          = @srcdir@
 
 OBJECTS         = pobj.o globals.o utils.o
+SOURCES                = $(patsubst %.o,%.cc,$(OBJECTS))
+UCSIM_OBJECTS  = ucsim.o
+UCSIM_SOURCES  = $(patsubst %.o,%.cc,$(UCSIM_OBJECTS))
+ALL_SOURCES    = $(SOURCES) $(UCSIM_SOURCES)
 
 
 # Compiling entire program or any subproject
@@ -43,6 +52,8 @@ all: checkconf libs
 
 libs: libutil.a
 
+main_app: checkconf ucsim_app
+
 # Compiling and installing everything and runing test
 # ---------------------------------------------------
 install: all installdirs
@@ -76,8 +87,8 @@ installdirs:
 # ---------------------
 dep: main.dep
 
-main.dep: *.cc *.h
-       $(CXXCPP) $(CPPFLAGS) $(M_OR_MM) *.cc >main.dep
+main.dep: $(ALL_SOURCES) *.h
+       $(CXXCPP) $(CPPFLAGS) $(M_OR_MM) $(ALL_SOURCES) >main.dep
 
 include main.dep
 include clean.mk
@@ -88,11 +99,16 @@ include clean.mk
 
 # My rules
 # --------
-
 libutil.a: $(OBJECTS)
        ar -rcu $*.a $(OBJECTS)
        $(RANLIB) $*.a
 
+ucsim_app: libs ucsim
+
+ucsim: $(UCSIM_OBJECTS) $(UCSIM_LIB_FILES)
+       echo $(UCSIM_LIB_FILES)
+       $(CXX) $(CXXFLAGS) -o $@ $< -L$(PRJDIR) $(UCSIM_LIBS)
+
 .cc.o:
        $(CXX) $(CXXFLAGS) $(CPPFLAGS) $(TARGET_ARCH) -c $< -o $@