# # uCsim hc08.src/Makefile # # (c) Drotos Daniel, Talker Bt. 1997 # STARTYEAR = 1997 SHELL = /bin/sh CXX = @CXX@ CPP = @CPP@ CXXCPP = @CXXCPP@ RANLIB = @RANLIB@ INSTALL = @INSTALL@ PRJDIR = .. DEFS = $(subs -DHAVE_CONFIG_H,,@DEFS@) CPPFLAGS = @CPPFLAGS@ -I. -I$(PRJDIR) \ -I$(PRJDIR)/cmd.src -I$(PRJDIR)/sim.src -I$(PRJDIR)/gui.src CFLAGS = @CFLAGS@ -Wall CXXFLAGS = @CXXFLAGS@ -Wall M_OR_MM = @M_OR_MM@ PICOPT = @PICOPT@ SHAREDLIB = @SHAREDLIB@ EXEEXT = @EXEEXT@ LIBS = @LIBS@ -L$(PRJDIR) -Wl,--start-group -lutil -lsim -lcmd -lguiucsim -Wl,--end-group DL = @DL@ dl_ok = @dl_ok@ prefix = @prefix@ exec_prefix = @exec_prefix@ bindir = @bindir@ libdir = @libdir@ datadir = @datadir@ includedir = @includedir@ mandir = @mandir@ man1dir = $(mandir)/man1 man2dir = $(mandir)/man2 infodir = @infodir@ srcdir = @srcdir@ OBJECTS_SHARED = glob.o \ inst.o \ simhc08.o hc08.o OBJECTS_EXE = shc08.o OBJECTS = $(OBJECTS_SHARED) $(OBJECTS_EXE) HC08ASM = enable_dlso = @enable_dlso@ dlso_ok = @dlso_ok@ #TEST_OBJ = test_bit.hex test_dis.hex test_mov.hex test_jmp.hex \ # test_arith.hex # Compiling entire program or any subproject # ------------------------------------------ all: checkconf otherlibs hc08.src tests tests: $(TEST_OBJ) # Compiling and installing everything and runing test # --------------------------------------------------- install: all installdirs $(INSTALL) -s shc08$(EXEEXT) $(DESTDIR)$(bindir) # Deleting all the installed files # -------------------------------- uninstall: rm -f $(DESTDIR)$(bindir)/shc08$(EXEEXT) # Performing self-test # -------------------- check: test test: # Performing installation test # ---------------------------- installcheck: # Creating installation directories # --------------------------------- installdirs: test -d $(DESTDIR)$(bindir) || $(INSTALL) -d $(DESTDIR)$(bindir) # Creating dependencies # --------------------- dep: Makefile.dep Makefile.dep: *.cc *.h $(CXXCPP) $(CPPFLAGS) $(M_OR_MM) *.cc >Makefile.dep include Makefile.dep include clean.mk # My rules # -------- .SUFFIXES: .asm .hex hc08.src: shc08$(EXEEXT) shared_lib shc08$(EXEEXT): $(OBJECTS) $(PRJDIR)/*.a $(CXX) $(CXXFLAGS) -o $@ $(OBJECTS) $(LIBS) ifeq ($(dlso_ok),yes) shared_lib: $(PRJDIR)/shc08.so else shared_lib: @$(PRJDIR)/mkecho $(PRJDIR) "No hc08 shared lib made." @$(PRJDIR)/mkecho $(PRJDIR) "(SHAREDLIB="$(SHAREDLIB)",dl_ok="$(dl_ok)",enable_dlso="$(enable_dlso)")" endif $(PRJDIR)/shc08.so: $(OBJECTS_SHARED) $(CXX) -shared $(OBJECTS_SHARED) -o $(PRJDIR)/shc08.so otherlibs: cd $(PRJDIR)/cmd.src && $(MAKE) all cd $(PRJDIR)/sim.src && $(MAKE) all .cc.o: $(CXX) $(CXXFLAGS) $(CPPFLAGS) $(TARGET_ARCH) -c $< -o $@ .asm.hex: $(HC08ASM) -l $< -o $@ -e $<.lst # Remaking configuration # ---------------------- checkconf: @if [ -f $(PRJDIR)/devel ]; then\ $(MAKE) -f conf.mk srcdir="$(srcdir)" PRJDIR="$(PRJDIR)" freshconf;\ fi # End of hc08.src/Makefile.in