diff options
| author | Xavier ASUS <xavi92psx@gmail.com> | 2019-10-18 00:31:54 +0200 |
|---|---|---|
| committer | Xavier ASUS <xavi92psx@gmail.com> | 2019-10-18 00:31:54 +0200 |
| commit | 268a53de823a6750d6256ee1fb1e7707b4b45740 (patch) | |
| tree | 42c1799a9a82b2f7d9790ee9fe181d72a7274751 /sim/ucsim/main.mk | |
| download | sdcc-gas-268a53de823a6750d6256ee1fb1e7707b4b45740.tar.gz | |
sdcc-3.9.0 fork implementing GNU assembler syntax
This fork aims to provide better support for stm8-binutils
Diffstat (limited to 'sim/ucsim/main.mk')
| -rw-r--r-- | sim/ucsim/main.mk | 169 |
1 files changed, 169 insertions, 0 deletions
diff --git a/sim/ucsim/main.mk b/sim/ucsim/main.mk new file mode 100644 index 0000000..54b7cea --- /dev/null +++ b/sim/ucsim/main.mk @@ -0,0 +1,169 @@ +# +# S51 main.mk +# +# (c) Drotos Daniel, Talker Bt. 1997,99 +# + +STARTYEAR = 1997 + +SHELL = /bin/sh +CXX = g++ +#CPP = gcc -E +CXXCPP = g++ -E +RANLIB = ranlib +INSTALL = /usr/bin/install -c +MAKEDEP = g++ -MM +AR = ar + +top_builddir = . +top_srcdir = . +SIMDIR = sim.src +CMDDIR = cmd.src +GUIDIR = gui.src + +DEFS = $(subs -DHAVE_CONFIG_H,,-DHAVE_CONFIG_H) +# FIXME: -Imcs51 must be removed!!! +CPPFLAGS = -I$(top_builddir) -I$(srcdir) \ + -I$(top_srcdir)/$(SIMDIR) \ + -I$(top_srcdir)/$(CMDDIR) -I$(top_srcdir)/$(GUIDIR) +CFLAGS = -g -O2 -I$(top_builddir) -Wall +CXXFLAGS = -g -O2 -g -I$(top_builddir) -Wall +WINSOCK_AVAIL = 0 +LDFLAGS = + +EXEEXT = + +LIB_LIST = sim ucsimutil guiucsim cmd ucsimutil sim +UCSIM_LIBS = $(patsubst %,-l%,$(LIB_LIST)) -lrt -lnsl +UCSIM_LIB_FILES = $(patsubst %,lib%.a,$(LIB_LIST)) + +RELAY_LIBS = $(patsubst %,-l%,ucsimutil) -lrt -lnsl +RELAY_LIB_FILES = $(patsubst %,lib%.a,ucsimutil) + +prefix = /usr/local +exec_prefix = ${prefix} +bindir = ${exec_prefix}/bin +libdir = ${exec_prefix}/lib +datadir = ${datarootdir} +datarootdir = ${prefix}/share +includedir = ${prefix}/include +mandir = ${datarootdir}/man +man1dir = $(mandir)/man1 +man2dir = $(mandir)/man2 +infodir = ${datarootdir}/info +srcdir = . + + +OBJECTS = pobj.o globals.o utils.o error.o app.o option.o chars.o fio.o +ifeq ($(WINSOCK_AVAIL), 1) +OBJECTS += fwio.o +else +OBJECTS += fuio.o +endif +SOURCES = $(patsubst %.o,%.cc,$(OBJECTS)) +UCSIM_OBJECTS = ucsim.o +UCSIM_SOURCES = $(patsubst %.o,%.cc,$(UCSIM_OBJECTS)) +RELAY_OBJECTS = relay.o +RELAY_SOURCES = $(patsubst %.o,%.cc,$(RELAY_OBJECTS)) +ALL_SOURCES = $(SOURCES) $(UCSIM_SOURCES) $(RELAY_SSOURCES) + +enable_ucsim = no + + +# Compiling entire program or any subproject +# ------------------------------------------ +all: checkconf libs + +libs: libucsimutil.a + +main_app: checkconf ucsim_app relay_app + +# Compiling and installing everything and runing test +# --------------------------------------------------- +install: all installdirs + + +# Deleting all the installed files +# -------------------------------- +uninstall: + rm -f $(DESTDIR)$(bindir)/s51$(EXEEXT) + rm -f $(DESTDIR)$(bindir)/savr$(EXEEXT) + rm -f $(DESTDIR)$(bindir)/serialview$(EXEEXT) + rm -f $(DESTDIR)$(bindir)/portmon$(EXEEXT) + rm -f $(DESTDIR)$(bindir)/sstm8$(EXEEXT) + rm -f $(DESTDIR)$(bindir)/sst7$(EXEEXT) + + +# Performing self-test +# -------------------- +check: + +test: + +# Performing installation test +# ---------------------------- +installcheck: + + +# Creating installation directories +# --------------------------------- +installdirs: + + +# Creating dependencies +# --------------------- +dep: main.dep + +main.dep: $(ALL_SOURCES) *.h $(srcdir)/*.h + $(MAKEDEP) $(CPPFLAGS) $(filter %.cc,$^) >main.dep + +-include main.dep +include $(srcdir)/clean.mk + +#parser.cc: parser.y + +#plex.cc: plex.l + +# My rules +# -------- +libucsimutil.a: $(OBJECTS) + $(AR) -rc $@ $(OBJECTS) + $(RANLIB) $@ + + +ifeq ($(enable_ucsim),yes) +ucsim_app: libs ucsim$(EXEEXT) +else +ucsim_app: +endif + +ftest_app: libs ftest$(EXEEXT) + +relay_app: libs relay$(EXEEXT) + +ucsim$(EXEEXT): $(UCSIM_OBJECTS) $(UCSIM_LIB_FILES) + echo $(UCSIM_LIB_FILES) + $(CXX) $(CXXFLAGS) $(LDFLAGS) $< -L$(top_builddir) $(UCSIM_LIBS) -o $@ + +ftest$(EXEEXT): ftest.o libucsimutil.a + $(CXX) $(CXXFLAGS) $(LDFLAGS) -o $@ $< -L$(top_builddir) -lucsimutil -lrt -lnsl + +relay$(EXEEXT): $(RELAY_OBJECTS) $(RELAY_LIB_FILES) + $(CXX) $(CXXFLAGS) $(LDFLAGS) $< -L$(top_builddir) $(RELAY_LIBS) -o $@ + + +ptt: ptt.o + $(CXX) $(CXXFLAGS) -o $@ $< -lpthread +.cc.o: + $(CXX) $(CXXFLAGS) $(CPPFLAGS) $(TARGET_ARCH) -c $< -o $@ + + +# Remaking configuration +# ---------------------- +checkconf: + @if [ -f devel ]; then\ + $(top_srcdir)/mkecho $(top_builddir) "MAIN.MK checkconf";\ + $(MAKE) -f conf.mk srcdir="$(srcdir)" freshconf;\ + fi + +# End of main_in.mk/main.mk |
