summaryrefslogtreecommitdiff
path: root/sim/ucsim/gui.src
diff options
context:
space:
mode:
authorXavi Del Campo <xavi.dcr@tutanota.com>2019-11-05 17:56:35 +0100
committerXavi Del Campo <xavi.dcr@tutanota.com>2019-11-05 17:56:35 +0100
commite524f157266c07a7a4cf3b766edd6ff9db98e4f4 (patch)
tree3dcbf507b5ec87d297f833df79cb532c3844032f /sim/ucsim/gui.src
parent1dcefbf527e52315abfe3b4871272b3fd9bb0f4b (diff)
downloadsdcc-gas-e524f157266c07a7a4cf3b766edd6ff9db98e4f4.tar.gz
Removed intermediate files
Diffstat (limited to 'sim/ucsim/gui.src')
-rw-r--r--sim/ucsim/gui.src/Makefile199
-rw-r--r--sim/ucsim/gui.src/Makefile.dep13
-rw-r--r--sim/ucsim/gui.src/gui.obin21800 -> 0 bytes
-rw-r--r--sim/ucsim/gui.src/if.obin13584 -> 0 bytes
-rw-r--r--sim/ucsim/gui.src/rec.obin2024 -> 0 bytes
-rw-r--r--sim/ucsim/gui.src/serio.src/Makefile114
6 files changed, 0 insertions, 326 deletions
diff --git a/sim/ucsim/gui.src/Makefile b/sim/ucsim/gui.src/Makefile
deleted file mode 100644
index d4ed2e5..0000000
--- a/sim/ucsim/gui.src/Makefile
+++ /dev/null
@@ -1,199 +0,0 @@
-#
-# uCsim gui.src/Makefile
-#
-# (c) Drotos Daniel, Talker Bt. 1999
-#
-
-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 = ..
-
-DEFS = $(subs -DHAVE_CONFIG_H,,-DHAVE_CONFIG_H)
-CPPFLAGS = -I$(srcdir) -I$(top_builddir) -I$(top_srcdir) \
- -I$(top_srcdir)/sim.src -I$(top_srcdir)/cmd.src
-CFLAGS = -g -O2 -Wall
-CXXFLAGS = -g -O2 -g -Wall
-
-LIBS = -lrt -lnsl -lpanel -lcurses -L$(top_builddir)
-
-curses_ok = yes
-
-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 = .
-
-
-enable_serio = no
-PKGS =
-ifeq ($(enable_serio),yes)
-SERIO_PKG = serio.src
-else
-SERIO_PKG =
-endif
-CURSES_PKGS = $(SERIO_PKG)
-
-# Common code
-OBJECTS = rec.o
-SOURCES = $(patsubst %.o,%.cc,$(OBJECTS))
-
-# uCsim only
-UCSIM_OBJECTS = gui.o if.o
-UCSIM_SOURCES = $(patsubst %.o,%.cc,$(UCSIM_OBJECTS))
-
-# Tool only
-TOOL_OBJECTS =
-TOOL_SOURCES = $(patsubst %.o,%.cc,$(TOOL_OBJECTS))
-
-ALL_SOURCES = $(SOURCES) $(UCSIM_SOURCES) $(TOOL_SOURCES)
-
-
-# Compiling entire program or any subproject
-# ------------------------------------------
-all: gui.src
-
-gui.src: checkconf gui_api
-ifeq ($(curses_ok),yes)
-ifneq ($(CURSES_PKGS),)
- @for pkg in $(CURSES_PKGS); do\
- $(MAKE) -C $$pkg $$pkg;\
- done
-endif
-endif
-# @for pkg in $(PKGS); do\
-# $(MAKE) -C $$pkg $$pkg ;\
-# done
-
-gui_api: ucsim_lib tool_lib
-
-
-# Compiling and installing everything and runing test
-# ---------------------------------------------------
-install: install_gui_api
-ifeq ($(curses_ok),yes)
-ifneq ($(CURSES_PKGS),)
- @for pkg in $(CURSES_PKGS); do\
- $(MAKE) -C $$pkg install ; cd ..;\
- done
-endif
-endif
-
-install_gui_api:
-
-
-# Deleting all the installed files
-# --------------------------------
-uninstall: uninstall_gui_api
-ifeq ($(curses_ok),yes)
-ifneq ($(CURSES_PKGS),)
- @for pkg in $(CURSES_PKGS); do\
- $(MAKE) -C $$pkg uninstall ; cd ..;\
- done
-endif
-endif
-
-uninstall_gui_api:
-
-
-# Performing self-test
-# --------------------
-check: check_local
-ifneq ($(CURSES_PKGS),)
- @for pkg in $(CURSES_PKGS); do\
- $(MAKE) -C $$pkg check;\
- done
-endif
-
-check_local:
-
-test: test_local
-ifneq ($(CURSES_PKGS),)
- @for pkg in $(CURSES_PKGS); do\
- $(MAKE) -C $$pkg test;\
- done
-endif
-
-test_local:
-
-
-# Performing installation test
-# ----------------------------
-installcheck: installcheck_gui_api
-ifneq ($(CURSES_PKGS),)
- @for pkg in $(CURSES_PKGS); do\
- $(MAKE) -C $$pkg installcheck;\
- done
-endif
-
-installcheck_gui_api:
-
-
-# Creating installation directories
-# ---------------------------------
-installdirs:
-ifneq ($(CURSES_PKGS),)
- @for pkg in $(CURSES_PKGS); do\
- $(MAKE) -C $$pkg installdirs;\
- done
-endif
-
-# Creating dependencies
-# ---------------------
-dep: Makefile.dep
-
-Makefile.dep: $(ALL_SOURCES) $(srcdir)/*.h
- $(MAKEDEP) $(CPPFLAGS) $(filter %.cc,$^) >Makefile.dep
-
-# don't include Makefile.dep for the listed targets:
-ifeq "$(findstring $(MAKECMDGOALS),uninstall uninstall_gui_api \
- check check_local test test_local \
- checkconf \
- clean_local clean distclean_local \
- distclean mostlyclean realclean)" ""
- -include Makefile.dep
-endif
-include $(srcdir)/clean.mk
-
-
-# My rules
-# --------
-ucsim_lib: $(top_builddir)/libguiucsim.a
-
-$(top_builddir)/libguiucsim.a: $(OBJECTS) $(UCSIM_OBJECTS)
- $(AR) -rc $@ $(OBJECTS) $(UCSIM_OBJECTS)
- $(RANLIB) $@
-
-tool_lib: $(top_builddir)/libguitool.a
-
-$(top_builddir)/libguitool.a: $(OBJECTS) $(TOOL_OBJECTS)
- $(AR) -rc $@ $(OBJECTS) $(TOOL_OBJECTS)
- $(RANLIB) $@
-
-.cc.o:
- $(CXX) $(CXXFLAGS) $(CPPFLAGS) -c $< -o $@
-
-
-# Remaking configuration
-# ----------------------
-checkconf:
- @if [ -f $(top_builddir)/devel ]; then\
- $(MAKE) -C $(top_builddir) -f conf.mk srcdir="$(srcdir)" top_builddir="$(top_builddir)" freshconf;\
- fi
-
-# End of gui.src/Makefile
diff --git a/sim/ucsim/gui.src/Makefile.dep b/sim/ucsim/gui.src/Makefile.dep
deleted file mode 100644
index 8906912..0000000
--- a/sim/ucsim/gui.src/Makefile.dep
+++ /dev/null
@@ -1,13 +0,0 @@
-rec.o: rec.cc reccl.h ../ddconfig.h ../pobjcl.h ../ddconfig.h ../pobjt.h \
- ../eventcl.h ../charscl.h
-gui.o: gui.cc guicl.h ../ddconfig.h ../pobjcl.h ../ddconfig.h ../pobjt.h \
- ../eventcl.h ../charscl.h ../sim.src/simcl.h ../cmd.src/newcmdcl.h \
- ../optioncl.h ../pobjcl.h ../stypes.h ../cmd.src/commandcl.h \
- ../cmd.src/newcmdcl.h guicl.h ../sim.src/uccl.h ../stypes.h ../pobjt.h \
- ../sim.src/hwcl.h ../sim.src/guiobjcl.h ../cmd.src/newcmdposixcl.h \
- ../fiocl.h ../cmd.src/cmdutil.h ../sim.src/memcl.h ../eventcl.h \
- ../errorcl.h ../sim.src/brkcl.h ../sim.src/stackcl.h ../sim.src/varcl.h \
- ../sim.src/uccl_instructions.h ../sim.src/argcl.h ifcl.h \
- ../sim.src/guiobjcl.h
-if.o: if.cc ifcl.h ../ddconfig.h ../pobjcl.h ../ddconfig.h ../pobjt.h \
- ../eventcl.h ../charscl.h ../sim.src/guiobjcl.h
diff --git a/sim/ucsim/gui.src/gui.o b/sim/ucsim/gui.src/gui.o
deleted file mode 100644
index 570f9f1..0000000
--- a/sim/ucsim/gui.src/gui.o
+++ /dev/null
Binary files differ
diff --git a/sim/ucsim/gui.src/if.o b/sim/ucsim/gui.src/if.o
deleted file mode 100644
index 1688899..0000000
--- a/sim/ucsim/gui.src/if.o
+++ /dev/null
Binary files differ
diff --git a/sim/ucsim/gui.src/rec.o b/sim/ucsim/gui.src/rec.o
deleted file mode 100644
index 913271f..0000000
--- a/sim/ucsim/gui.src/rec.o
+++ /dev/null
Binary files differ
diff --git a/sim/ucsim/gui.src/serio.src/Makefile b/sim/ucsim/gui.src/serio.src/Makefile
deleted file mode 100644
index f92f471..0000000
--- a/sim/ucsim/gui.src/serio.src/Makefile
+++ /dev/null
@@ -1,114 +0,0 @@
-# Makefile for kano-networks talker
-
-SHELL = /bin/sh
-CXX = g++
-CXXCPP = g++ -E
-INSTALL = /usr/bin/install -c
-STRIP = strip
-CP = /bin/cp
-MAKEDEP = g++ -MM
-
-top_builddir = ../..
-top_srcdir = ../..
-
-DEFS = $(subs -DHAVE_CONFIG_H,,-DHAVE_CONFIG_H)
-CPPFLAGS = -I. -I$(top_builddir)
-# -I$(top_builddir)/cmd.src -I$(top_builddir)/sim.src
-CFLAGS = -g -O2 -Wall
-CXXFLAGS = -g -O2 -g -Wall
-
-LIBS = -lpanel -lcurses -lrt -lnsl
-
-EXEEXT =
-
-curses_ok = yes
-
-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 = main.o fileio.o frontend.o posix_signal.o
-
-
-# Compiling entire program or any subproject
-# ------------------------------------------
-all: serio.src
-
-ifeq ($(curses_ok),yes)
-serio.src: checkconf serialview$(EXEEXT)
-else
-serio.src: checkconf
-endif
-
-
-# Compiling and installing everything and runing test
-# ---------------------------------------------------
-install: all installdirs
- $(INSTALL) serialview$(EXEEXT) $(DESTDIR)$(bindir)/serialview$(EXEEXT)
- $(STRIP) $(DESTDIR)$(bindir)/serialview$(EXEEXT)
-
-
-# Deleting all the installed files
-# --------------------------------
-uninstall:
- rm -f $(DESTDIR)$(bindir)/serialview$(EXEEXT)
-
-
-# Performing self-test
-# --------------------
-check:
-
-test:
-
-
-# Performing installation test
-# ----------------------------
-installcheck:
-
-
-# Creating installation directories
-# ---------------------------------
-installdirs:
- test -d $(DESTDIR)$(bindir) || $(INSTALL) -d $(DESTDIR)$(bindir)
-
-
-# Creating dependencies
-# ---------------------
-dep: Makefile.dep
-
-Makefile.dep: $(srcdir)/*.cc $(srcdir)/*.h $(srcdir)/*.hh
- $(MAKEDEP) $(CPPFLAGS) $(filter %.cc,$^) >Makefile.dep
-
-ifeq "$(findstring $(MAKECMDGOALS),uninstall installcheck installdirs checkconf \
- clean distclean mostlyclean realclean)" ""
- -include Makefile.dep
-endif
-include $(srcdir)/clean.mk
-
-
-# My rules
-# --------
-serialview$(EXEEXT): $(OBJECTS)
- $(CXX) -o $@ $(LDFLAGS) $(OBJECTS) $(LIBS)
-
-.cc.o:
- $(CXX) $(CXXFLAGS) $(CPPFLAGS) -c $< -o $@
-
-# Remaking configuration
-# ----------------------
-checkconf:
- @if [ -f $(top_builddir)/devel ]; then\
- $(MAKE) -f conf.mk srcdir="$(srcdir)" top_builddir="$(top_builddir)" top_srcdir=$(top_srcdir) freshconf;\
- fi
-
-# End of gui.src/serio.src/Makefile.in