summaryrefslogtreecommitdiff
path: root/sdas
diff options
context:
space:
mode:
authorXavier ASUS <xavi92psx@gmail.com>2019-10-24 23:17:51 +0200
committerXavier ASUS <xavi92psx@gmail.com>2019-10-24 23:18:52 +0200
commit9e93944f18de5d7e38c15651df0235156d9c6d4e (patch)
treefc4f9b788698849e547bb2c1ec82ec7d2742fd83 /sdas
parentd5577a84aadd0195a95b5b4d83e49b40af49425b (diff)
downloadsdcc-gas-9e93944f18de5d7e38c15651df0235156d9c6d4e.tar.gz
Removed intermediate files
Diffstat (limited to 'sdas')
-rw-r--r--sdas/as6808/Makefile137
-rw-r--r--sdas/as8051/Makefile137
-rw-r--r--sdas/as8xcxxx/Makefile137
-rw-r--r--sdas/asgb/Makefile137
-rw-r--r--sdas/aspdk13/Makefile145
-rw-r--r--sdas/aspdk14/Makefile145
-rw-r--r--sdas/aspdk15/Makefile145
-rw-r--r--sdas/aspdk16/Makefile145
-rw-r--r--sdas/asrab/Makefile137
-rw-r--r--sdas/asstm8/Makefile137
-rw-r--r--sdas/astlcs90/Makefile137
-rw-r--r--sdas/asz80/Makefile137
-rw-r--r--sdas/linksrc/Makefile172
13 files changed, 0 insertions, 1848 deletions
diff --git a/sdas/as6808/Makefile b/sdas/as6808/Makefile
deleted file mode 100644
index 1b71dc0..0000000
--- a/sdas/as6808/Makefile
+++ /dev/null
@@ -1,137 +0,0 @@
-#
-#
-#
-
-VERSION = 3.9.3
-VERSIONHI = 3
-VERSIONLO = 9
-VERSIONP = 3
-
-SHELL = /bin/sh
-CC = gcc
-CPP = gcc -E
-INSTALL = /usr/bin/install -c
-STRIP = strip
-MAKEDEP = g++ -MM
-
-top_builddir = ../..
-top_srcdir = ../..
-
-srcdir = .
-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 = @info@
-
-EXEEXT =
-
-
-
-CPPFLAGS = -DSDCDB -DNOICE -DINDEXLIB -I. -I$(srcdir) -I$(srcdir)/../asxxsrc -I$(srcdir)/../../support/util
-CFLAGS = -pipe -ggdb -g -O2 -Wall -Wno-parentheses $(CPPFLAGS)
-LDFLAGS =
-LIBS = -lm
-
-OBJDIR = obj
-
-UTILLIB = $(srcdir)/../../support/util
-UTILSRC = dbuf.c dbuf_string.c
-UTILLIBOBJS = $(UTILSRC:%.c=$(OBJDIR)/%.o)
-
-ASXXLIB = $(srcdir)/../asxxsrc
-ASXXLIBSRC = asdbg.c asdata.c asexpr.c aslex.c aslist.c asmain.c asout.c assubr.c assym.c asmcro.c sdas.c strcmpi.c
-ASXXLIBOBJS = $(ASXXLIBSRC:%.c=$(OBJDIR)/%.o)
-
-SRC = m08pst.c m08mch.c m08adr.c
-OBJS = $(SRC:%.c=$(OBJDIR)/%.o)
-
-ASSOURCES = $(SRC) $(ASXXLIBSRC:%.c=$(ASXXLIB)/%.c) $(UTILSRC:%.c=$(UTILLIB)/%.c)
-
-ASOBJECTS = $(OBJS) $(ASXXLIBOBJS) $(UTILLIBOBJS)
-
-ASX = $(top_builddir)/bin/sdas6808$(EXEEXT)
-#DEST = $(DESTDIR)$(bindir)/sdas6808$(EXEEXT)
-DEST = sdas6808
-DESTPATH = $(DESTDIR)$(bindir)/
-
-transform = s,x,x,
-
-# Compiling entire program or any subproject
-# ------------------------------------------
-all: checkconf $(ASX)
-
-$(ASX): $(ASOBJECTS)
- $(CC) $(CFLAGS) $(LDFLAGS) -o $@ $(ASOBJECTS) $(LIBS)
-
-# Compiling and installing everything and running test
-# ----------------------------------------------------
-install: all installdirs
- $(INSTALL) $(ASX) $(DESTPATH)`echo $(DEST)|sed '$(transform)'`$(EXEEXT)
- $(STRIP) $(DESTPATH)`echo $(DEST)|sed '$(transform)'`$(EXEEXT)
-
-# Deleting all the installed files
-# --------------------------------
-uninstall:
- rm -f $(DESTPATH)`echo $(DEST)|sed '$(transform)'`$(EXEEXT)
-
-
-# Performing self-test
-# --------------------
-check:
-
-
-# Performing installation test
-# ----------------------------
-installcheck:
-
-
-# Creating installation directories
-# ---------------------------------
-installdirs:
- $(INSTALL) -d $(DESTDIR)$(bindir)
-
-
-# Creating dependencies
-# ---------------------
-dep: Makefile.dep
-
-Makefile.dep: $(ASSOURCES) $(srcdir)/*.h
- $(MAKEDEP) $(CPPFLAGS) $(filter %.c,$^) >Makefile.dep
-
-ifeq "$(findstring $(MAKECMDGOALS),uninstall check installcheck installdirs \
- clean distclean mostlyclean realclean)" ""
- -include Makefile.dep
-endif
-include $(srcdir)/clean.mk
-
-# My rules
-# --------
-$(OBJDIR)/.stamp:
- mkdir -p $(OBJDIR)
- touch $(OBJDIR)/.stamp
-
-$(OBJDIR)/%.o: %.c $(OBJDIR)/.stamp
- $(CC) -c $(CFLAGS) -o $@ $<
-
-$(OBJDIR)/%.o: $(ASXXLIB)/%.c $(OBJDIR)/.stamp
- $(CC) -c $(CFLAGS) -o $@ $<
-
-$(OBJDIR)/%.o: $(UTILLIB)/%.c $(OBJDIR)/.stamp
- $(CC) -c $(CFLAGS) -o $@ $<
-
-
-# Remaking configuration
-# ----------------------
-checkconf:
- @if [ -f $(top_builddir)/devel ]; then\
- $(MAKE) -f ../conf.mk srcdir="$(srcdir)" top_builddir="$(top_builddir)" freshconf;\
- fi
-
-# End of Makefile
diff --git a/sdas/as8051/Makefile b/sdas/as8051/Makefile
deleted file mode 100644
index 1c516fa..0000000
--- a/sdas/as8051/Makefile
+++ /dev/null
@@ -1,137 +0,0 @@
-#
-#
-#
-
-VERSION = 3.9.3
-VERSIONHI = 3
-VERSIONLO = 9
-VERSIONP = 3
-
-SHELL = /bin/sh
-CC = gcc
-CPP = gcc -E
-INSTALL = /usr/bin/install -c
-STRIP = strip
-MAKEDEP = g++ -MM
-
-top_builddir = ../..
-top_srcdir = ../..
-
-srcdir = .
-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 = @info@
-
-EXEEXT =
-
-
-
-CPPFLAGS = -DSDCDB -DNOICE -DINDEXLIB -I. -I$(srcdir) -I$(srcdir)/../asxxsrc -I$(srcdir)/../../support/util
-CFLAGS = -pipe -ggdb -g -O2 -Wall -Wno-parentheses $(CPPFLAGS)
-LDFLAGS =
-LIBS = -lm
-
-OBJDIR = obj
-
-UTILLIB = $(srcdir)/../../support/util
-UTILSRC = dbuf.c dbuf_string.c
-UTILLIBOBJS = $(UTILSRC:%.c=$(OBJDIR)/%.o)
-
-ASXXLIB = $(srcdir)/../asxxsrc
-ASXXLIBSRC = asdbg.c asdata.c asexpr.c aslex.c aslist.c asmain.c asout.c assubr.c assym.c asmcro.c sdas.c strcmpi.c
-ASXXLIBOBJS = $(ASXXLIBSRC:%.c=$(OBJDIR)/%.o)
-
-SRC = i51pst.c i51mch.c i51adr.c
-OBJS = $(SRC:%.c=$(OBJDIR)/%.o)
-
-ASSOURCES = $(SRC) $(ASXXLIBSRC:%.c=$(ASXXLIB)/%.c) $(UTILSRC:%.c=$(UTILLIB)/%.c)
-
-ASOBJECTS = $(OBJS) $(ASXXLIBOBJS) $(UTILLIBOBJS)
-
-ASX = $(top_builddir)/bin/sdas8051$(EXEEXT)
-#DEST = $(DESTDIR)$(bindir)/sdas8051$(EXEEXT)
-DEST = sdas8051
-DESTPATH = $(DESTDIR)$(bindir)/
-
-transform = s,x,x,
-
-# Compiling entire program or any subproject
-# ------------------------------------------
-all: checkconf $(ASX)
-
-$(ASX): $(ASOBJECTS)
- $(CC) $(CFLAGS) $(LDFLAGS) -o $@ $(ASOBJECTS) $(LIBS)
-
-# Compiling and installing everything and running test
-# ----------------------------------------------------
-install: all installdirs
- $(INSTALL) $(ASX) $(DESTPATH)`echo $(DEST)|sed '$(transform)'`$(EXEEXT)
- $(STRIP) $(DESTPATH)`echo $(DEST)|sed '$(transform)'`$(EXEEXT)
-
-# Deleting all the installed files
-# --------------------------------
-uninstall:
- rm -f $(DESTPATH)`echo $(DEST)|sed '$(transform)'`$(EXEEXT)
-
-
-# Performing self-test
-# --------------------
-check:
-
-
-# Performing installation test
-# ----------------------------
-installcheck:
-
-
-# Creating installation directories
-# ---------------------------------
-installdirs:
- $(INSTALL) -d $(DESTDIR)$(bindir)
-
-
-# Creating dependencies
-# ---------------------
-dep: Makefile.dep
-
-Makefile.dep: $(ASSOURCES) $(srcdir)/*.h
- $(MAKEDEP) $(CPPFLAGS) $(filter %.c,$^) >Makefile.dep
-
-ifeq "$(findstring $(MAKECMDGOALS),uninstall check installcheck installdirs \
- clean distclean mostlyclean realclean)" ""
- -include Makefile.dep
-endif
-include $(srcdir)/clean.mk
-
-# My rules
-# --------
-$(OBJDIR)/.stamp:
- mkdir -p $(OBJDIR)
- touch $(OBJDIR)/.stamp
-
-$(OBJDIR)/%.o: %.c $(OBJDIR)/.stamp
- $(CC) -c $(CFLAGS) -o $@ $<
-
-$(OBJDIR)/%.o: $(ASXXLIB)/%.c $(OBJDIR)/.stamp
- $(CC) -c $(CFLAGS) -o $@ $<
-
-$(OBJDIR)/%.o: $(UTILLIB)/%.c $(OBJDIR)/.stamp
- $(CC) -c $(CFLAGS) -o $@ $<
-
-
-# Remaking configuration
-# ----------------------
-checkconf:
- @if [ -f $(top_builddir)/devel ]; then\
- $(MAKE) -f ../conf.mk srcdir="$(srcdir)" top_builddir="$(top_builddir)" freshconf;\
- fi
-
-# End of Makefile
diff --git a/sdas/as8xcxxx/Makefile b/sdas/as8xcxxx/Makefile
deleted file mode 100644
index 74d272e..0000000
--- a/sdas/as8xcxxx/Makefile
+++ /dev/null
@@ -1,137 +0,0 @@
-#
-#
-#
-
-VERSION = 0.0.0
-VERSIONHI = 0
-VERSIONLO = 0
-VERSIONP = 0
-
-SHELL = /bin/sh
-CC = gcc
-CPP = gcc -E
-INSTALL = /usr/bin/install -c
-STRIP = strip
-MAKEDEP = g++ -MM
-
-top_builddir = ../..
-top_srcdir = ../..
-
-srcdir = .
-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 = @info@
-
-EXEEXT =
-
-
-
-CPPFLAGS = -DSDCDB -DNOICE -DINDEXLIB -I. -I$(srcdir) -I$(srcdir)/../asxxsrc -I$(srcdir)/../../support/util
-CFLAGS = -pipe -ggdb -g -Og -Wall -Wno-parentheses $(CPPFLAGS)
-LDFLAGS =
-LIBS = -lm
-
-OBJDIR = obj
-
-UTILLIB = $(srcdir)/../../support/util
-UTILSRC = dbuf.c dbuf_string.c
-UTILLIBOBJS = $(UTILSRC:%.c=$(OBJDIR)/%.o)
-
-ASXXLIB = $(srcdir)/../asxxsrc
-ASXXLIBSRC = asdbg.c asdata.c asexpr.c aslex.c aslist.c asmain.c asout.c assubr.c assym.c asmcro.c sdas.c strcmpi.c
-ASXXLIBOBJS = $(ASXXLIBSRC:%.c=$(OBJDIR)/%.o)
-
-SRC = ds8pst.c ds8mch.c ds8adr.c
-OBJS = $(SRC:%.c=$(OBJDIR)/%.o)
-
-ASSOURCES = $(SRC) $(ASXXLIBSRC:%.c=$(ASXXLIB)/%.c) $(UTILSRC:%.c=$(UTILLIB)/%.c)
-
-ASOBJECTS = $(OBJS) $(ASXXLIBOBJS) $(UTILLIBOBJS)
-
-ASX = $(top_builddir)/bin/sdas390$(EXEEXT)
-#DEST = $(DESTDIR)$(bindir)/sdas390$(EXEEXT)
-DEST = sdas390
-DESTPATH = $(DESTDIR)$(bindir)/
-
-transform = s,x,x,
-
-# Compiling entire program or any subproject
-# ------------------------------------------
-all: checkconf $(ASX)
-
-$(ASX): $(ASOBJECTS)
- $(CC) $(CFLAGS) $(LDFLAGS) -o $@ $(ASOBJECTS) $(LIBS)
-
-# Compiling and installing everything and running test
-# ----------------------------------------------------
-install: all installdirs
- $(INSTALL) $(ASX) $(DESTPATH)`echo $(DEST)|sed '$(transform)'`$(EXEEXT)
- $(STRIP) $(DESTPATH)`echo $(DEST)|sed '$(transform)'`$(EXEEXT)
-
-# Deleting all the installed files
-# --------------------------------
-uninstall:
- rm -f $(DESTPATH)`echo $(DEST)|sed '$(transform)'`$(EXEEXT)
-
-
-# Performing self-test
-# --------------------
-check:
-
-
-# Performing installation test
-# ----------------------------
-installcheck:
-
-
-# Creating installation directories
-# ---------------------------------
-installdirs:
- $(INSTALL) -d $(DESTDIR)$(bindir)
-
-
-# Creating dependencies
-# ---------------------
-dep: Makefile.dep
-
-Makefile.dep: $(ASSOURCES) $(srcdir)/*.h
- $(MAKEDEP) $(CPPFLAGS) $(filter %.c,$^) >Makefile.dep
-
-ifeq "$(findstring $(MAKECMDGOALS),uninstall check installcheck installdirs \
- clean distclean mostlyclean realclean)" ""
- -include Makefile.dep
-endif
-include $(srcdir)/clean.mk
-
-# My rules
-# --------
-$(OBJDIR)/.stamp:
- mkdir -p $(OBJDIR)
- touch $(OBJDIR)/.stamp
-
-$(OBJDIR)/%.o: %.c $(OBJDIR)/.stamp
- $(CC) -c $(CFLAGS) -o $@ $<
-
-$(OBJDIR)/%.o: $(ASXXLIB)/%.c $(OBJDIR)/.stamp
- $(CC) -c $(CFLAGS) -o $@ $<
-
-$(OBJDIR)/%.o: $(UTILLIB)/%.c $(OBJDIR)/.stamp
- $(CC) -c $(CFLAGS) -o $@ $<
-
-
-# Remaking configuration
-# ----------------------
-checkconf:
- @if [ -f $(top_builddir)/devel ]; then\
- $(MAKE) -f ../conf.mk srcdir="$(srcdir)" top_builddir="$(top_builddir)" freshconf;\
- fi
-
-# End of Makefile
diff --git a/sdas/asgb/Makefile b/sdas/asgb/Makefile
deleted file mode 100644
index adc4daa..0000000
--- a/sdas/asgb/Makefile
+++ /dev/null
@@ -1,137 +0,0 @@
-#
-#
-#
-
-VERSION = 3.9.3
-VERSIONHI = 3
-VERSIONLO = 9
-VERSIONP = 3
-
-SHELL = /bin/sh
-CC = gcc
-CPP = gcc -E
-INSTALL = /usr/bin/install -c
-STRIP = strip
-MAKEDEP = g++ -MM
-
-top_builddir = ../..
-top_srcdir = ../..
-
-srcdir = .
-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 = @info@
-
-EXEEXT =
-
-
-
-CPPFLAGS = -DSDCDB -DNOICE -DINDEXLIB -I. -I$(srcdir) -I$(srcdir)/../asxxsrc -I$(srcdir)/../../support/util
-CFLAGS = -pipe -ggdb -g -O2 -Wall -Wno-parentheses $(CPPFLAGS)
-LDFLAGS =
-LIBS = -lm
-
-OBJDIR = obj
-
-UTILLIB = $(srcdir)/../../support/util
-UTILSRC = dbuf.c dbuf_string.c
-UTILLIBOBJS = $(UTILSRC:%.c=$(OBJDIR)/%.o)
-
-ASXXLIB = $(srcdir)/../asxxsrc
-ASXXLIBSRC = asdbg.c asdata.c asexpr.c aslex.c aslist.c asmain.c asout.c assubr.c assym.c asmcro.c sdas.c strcmpi.c
-ASXXLIBOBJS = $(ASXXLIBSRC:%.c=$(OBJDIR)/%.o)
-
-SRC = gbpst.c gbmch.c gbadr.c
-OBJS = $(SRC:%.c=$(OBJDIR)/%.o)
-
-ASSOURCES = $(SRC) $(ASXXLIBSRC:%.c=$(ASXXLIB)/%.c) $(UTILSRC:%.c=$(UTILLIB)/%.c)
-
-ASOBJECTS = $(OBJS) $(ASXXLIBOBJS) $(UTILLIBOBJS)
-
-ASX = $(top_builddir)/bin/sdasgb$(EXEEXT)
-#DEST = $(DESTDIR)$(bindir)/sdasgb$(EXEEXT)
-DEST = sdasgb
-DESTPATH = $(DESTDIR)$(bindir)/
-
-transform = s,x,x,
-
-# Compiling entire program or any subproject
-# ------------------------------------------
-all: checkconf $(ASX)
-
-$(ASX): $(ASOBJECTS)
- $(CC) $(CFLAGS) $(LDFLAGS) -o $@ $(ASOBJECTS) $(LIBS)
-
-# Compiling and installing everything and running test
-# ----------------------------------------------------
-install: all installdirs
- $(INSTALL) $(ASX) $(DESTPATH)`echo $(DEST)|sed '$(transform)'`$(EXEEXT)
- $(STRIP) $(DESTPATH)`echo $(DEST)|sed '$(transform)'`$(EXEEXT)
-
-# Deleting all the installed files
-# --------------------------------
-uninstall:
- rm -f $(DESTPATH)`echo $(DEST)|sed '$(transform)'`$(EXEEXT)
-
-
-# Performing self-test
-# --------------------
-check:
-
-
-# Performing installation test
-# ----------------------------
-installcheck:
-
-
-# Creating installation directories
-# ---------------------------------
-installdirs:
- $(INSTALL) -d $(DESTDIR)$(bindir)
-
-
-# Creating dependencies
-# ---------------------
-dep: Makefile.dep
-
-Makefile.dep: $(ASSOURCES) $(srcdir)/*.h
- $(MAKEDEP) $(CPPFLAGS) $(filter %.c,$^) >Makefile.dep
-
-ifeq "$(findstring $(MAKECMDGOALS),uninstall check installcheck installdirs \
- clean distclean mostlyclean realclean)" ""
- -include Makefile.dep
-endif
-include $(srcdir)/clean.mk
-
-# My rules
-# --------
-$(OBJDIR)/.stamp:
- mkdir -p $(OBJDIR)
- touch $(OBJDIR)/.stamp
-
-$(OBJDIR)/%.o: %.c $(OBJDIR)/.stamp
- $(CC) -c $(CFLAGS) -o $@ $<
-
-$(OBJDIR)/%.o: $(ASXXLIB)/%.c $(OBJDIR)/.stamp
- $(CC) -c $(CFLAGS) -o $@ $<
-
-$(OBJDIR)/%.o: $(UTILLIB)/%.c $(OBJDIR)/.stamp
- $(CC) -c $(CFLAGS) -o $@ $<
-
-
-# Remaking configuration
-# ----------------------
-checkconf:
- @if [ -f $(top_builddir)/devel ]; then\
- $(MAKE) -f ../conf.mk srcdir="$(srcdir)" top_builddir="$(top_builddir)" freshconf;\
- fi
-
-# End of Makefile
diff --git a/sdas/aspdk13/Makefile b/sdas/aspdk13/Makefile
deleted file mode 100644
index 473886e..0000000
--- a/sdas/aspdk13/Makefile
+++ /dev/null
@@ -1,145 +0,0 @@
-#
-#
-#
-
-VERSION = 3.9.3
-VERSIONHI = 3
-VERSIONLO = 9
-VERSIONP = 3
-
-SHELL = /bin/sh
-CC = gcc
-CPP = gcc -E
-INSTALL = /usr/bin/install -c
-STRIP = strip
-MAKEDEP = g++ -MM
-
-top_builddir = ../..
-top_srcdir = ../..
-
-srcdir = .
-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 = @info@
-
-EXEEXT =
-
-
-
-CPPFLAGS = -DSDCDB -DNOICE -DINDEXLIB -I. -I$(srcdir) -I$(srcdir)/../asxxsrc -I$(srcdir)/../aspdk -I$(srcdir)/../../support/util
-CFLAGS = -pipe -ggdb -g -O2 -Wall -Wno-parentheses $(CPPFLAGS)
-LDFLAGS =
-LIBS = -lm
-
-OBJDIR = obj
-
-UTILLIB = $(srcdir)/../../support/util
-UTILSRC = dbuf.c dbuf_string.c
-UTILLIBOBJS = $(UTILSRC:%.c=$(OBJDIR)/%.o)
-
-ASXXLIB = $(srcdir)/../asxxsrc
-ASXXLIBSRC = asdbg.c asdata.c asexpr.c aslex.c aslist.c asmain.c asout.c assubr.c assym.c asmcro.c sdas.c strcmpi.c
-ASXXLIBOBJS = $(ASXXLIBSRC:%.c=$(OBJDIR)/%.o)
-
-ASPDKLIB = $(srcdir)/../aspdk
-ASPDKLIBSRC = pdkmch.c pdkadr.c
-ASPDKLIBOBJS = $(ASPDKLIBSRC:%.c=$(OBJDIR)/%.o)
-
-
-SRC = pdk13pst.c pdk13mch.c
-OBJS = $(SRC:%.c=$(OBJDIR)/%.o)
-
-ASSOURCES = $(SRC) $(ASXXLIBSRC:%.c=$(ASXXLIB)/%.c) $(ASPDKLIBSRC:%.c=$(ASPDKLIB)/%.c) $(UTILSRC:%.c=$(UTILLIB)/%.c)
-
-ASOBJECTS = $(OBJS) $(ASXXLIBOBJS) $(ASPDKLIBOBJS) $(UTILLIBOBJS)
-
-ASX = $(top_builddir)/bin/sdaspdk13$(EXEEXT)
-#DEST = $(DESTDIR)$(bindir)/sdaspdk13$(EXEEXT)
-DEST = sdaspdk13
-DESTPATH = $(DESTDIR)$(bindir)/
-
-transform = s,x,x,
-
-# Compiling entire program or any subproject
-# ------------------------------------------
-all: checkconf $(ASX)
-
-$(ASX): $(ASOBJECTS)
- $(CC) $(CFLAGS) $(LDFLAGS) -o $@ $(ASOBJECTS) $(LIBS)
-
-# Compiling and installing everything and running test
-# ----------------------------------------------------
-install: all installdirs
- $(INSTALL) $(ASX) $(DESTPATH)`echo $(DEST)|sed '$(transform)'`$(EXEEXT)
- $(STRIP) $(DESTPATH)`echo $(DEST)|sed '$(transform)'`$(EXEEXT)
-
-# Deleting all the installed files
-# --------------------------------
-uninstall:
- rm -f $(DESTPATH)`echo $(DEST)|sed '$(transform)'`$(EXEEXT)
-
-
-# Performing self-test
-# --------------------
-check:
-
-
-# Performing installation test
-# ----------------------------
-installcheck:
-
-
-# Creating installation directories
-# ---------------------------------
-installdirs:
- $(INSTALL) -d $(DESTDIR)$(bindir)
-
-
-# Creating dependencies
-# ---------------------
-dep: Makefile.dep
-
-Makefile.dep: $(ASSOURCES) $(srcdir)/*.h
- $(MAKEDEP) $(CPPFLAGS) $(filter %.c,$^) >Makefile.dep
-
-ifeq "$(findstring $(MAKECMDGOALS),uninstall check installcheck installdirs \
- clean distclean mostlyclean realclean)" ""
- -include Makefile.dep
-endif
-include $(srcdir)/clean.mk
-
-# My rules
-# --------
-$(OBJDIR)/.stamp:
- mkdir -p $(OBJDIR)
- touch $(OBJDIR)/.stamp
-
-$(OBJDIR)/%.o: %.c $(OBJDIR)/.stamp
- $(CC) -c $(CFLAGS) -o $@ $<
-
-$(OBJDIR)/%.o: $(ASXXLIB)/%.c $(OBJDIR)/.stamp
- $(CC) -c $(CFLAGS) -o $@ $<
-
-$(OBJDIR)/%.o: $(ASPDKLIB)/%.c $(OBJDIR)/.stamp
- $(CC) -c $(CFLAGS) -o $@ $<
-
-$(OBJDIR)/%.o: $(UTILLIB)/%.c $(OBJDIR)/.stamp
- $(CC) -c $(CFLAGS) -o $@ $<
-
-
-# Remaking configuration
-# ----------------------
-checkconf:
- @if [ -f $(top_builddir)/devel ]; then\
- $(MAKE) -f ../conf.mk srcdir="$(srcdir)" top_builddir="$(top_builddir)" freshconf;\
- fi
-
-# End of Makefile
diff --git a/sdas/aspdk14/Makefile b/sdas/aspdk14/Makefile
deleted file mode 100644
index dc43d77..0000000
--- a/sdas/aspdk14/Makefile
+++ /dev/null
@@ -1,145 +0,0 @@
-#
-#
-#
-
-VERSION = 3.9.3
-VERSIONHI = 3
-VERSIONLO = 9
-VERSIONP = 3
-
-SHELL = /bin/sh
-CC = gcc
-CPP = gcc -E
-INSTALL = /usr/bin/install -c
-STRIP = strip
-MAKEDEP = g++ -MM
-
-top_builddir = ../..
-top_srcdir = ../..
-
-srcdir = .
-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 = @info@
-
-EXEEXT =
-
-
-
-CPPFLAGS = -DSDCDB -DNOICE -DINDEXLIB -I. -I$(srcdir) -I$(srcdir)/../asxxsrc -I$(srcdir)/../aspdk -I$(srcdir)/../../support/util
-CFLAGS = -pipe -ggdb -g -O2 -Wall -Wno-parentheses $(CPPFLAGS)
-LDFLAGS =
-LIBS = -lm
-
-OBJDIR = obj
-
-UTILLIB = $(srcdir)/../../support/util
-UTILSRC = dbuf.c dbuf_string.c
-UTILLIBOBJS = $(UTILSRC:%.c=$(OBJDIR)/%.o)
-
-ASXXLIB = $(srcdir)/../asxxsrc
-ASXXLIBSRC = asdbg.c asdata.c asexpr.c aslex.c aslist.c asmain.c asout.c assubr.c assym.c asmcro.c sdas.c strcmpi.c
-ASXXLIBOBJS = $(ASXXLIBSRC:%.c=$(OBJDIR)/%.o)
-
-ASPDKLIB = $(srcdir)/../aspdk
-ASPDKLIBSRC = pdkmch.c pdkadr.c
-ASPDKLIBOBJS = $(ASPDKLIBSRC:%.c=$(OBJDIR)/%.o)
-
-
-SRC = pdk14pst.c pdk14mch.c
-OBJS = $(SRC:%.c=$(OBJDIR)/%.o)
-
-ASSOURCES = $(SRC) $(ASXXLIBSRC:%.c=$(ASXXLIB)/%.c) $(ASPDKLIBSRC:%.c=$(ASPDKLIB)/%.c) $(UTILSRC:%.c=$(UTILLIB)/%.c)
-
-ASOBJECTS = $(OBJS) $(ASXXLIBOBJS) $(ASPDKLIBOBJS) $(UTILLIBOBJS)
-
-ASX = $(top_builddir)/bin/sdaspdk14$(EXEEXT)
-#DEST = $(DESTDIR)$(bindir)/sdaspdk14$(EXEEXT)
-DEST = sdaspdk14
-DESTPATH = $(DESTDIR)$(bindir)/
-
-transform = s,x,x,
-
-# Compiling entire program or any subproject
-# ------------------------------------------
-all: checkconf $(ASX)
-
-$(ASX): $(ASOBJECTS)
- $(CC) $(CFLAGS) $(LDFLAGS) -o $@ $(ASOBJECTS) $(LIBS)
-
-# Compiling and installing everything and running test
-# ----------------------------------------------------
-install: all installdirs
- $(INSTALL) $(ASX) $(DESTPATH)`echo $(DEST)|sed '$(transform)'`$(EXEEXT)
- $(STRIP) $(DESTPATH)`echo $(DEST)|sed '$(transform)'`$(EXEEXT)
-
-# Deleting all the installed files
-# --------------------------------
-uninstall:
- rm -f $(DESTPATH)`echo $(DEST)|sed '$(transform)'`$(EXEEXT)
-
-
-# Performing self-test
-# --------------------
-check:
-
-
-# Performing installation test
-# ----------------------------
-installcheck:
-
-
-# Creating installation directories
-# ---------------------------------
-installdirs:
- $(INSTALL) -d $(DESTDIR)$(bindir)
-
-
-# Creating dependencies
-# ---------------------
-dep: Makefile.dep
-
-Makefile.dep: $(ASSOURCES) $(srcdir)/*.h
- $(MAKEDEP) $(CPPFLAGS) $(filter %.c,$^) >Makefile.dep
-
-ifeq "$(findstring $(MAKECMDGOALS),uninstall check installcheck installdirs \
- clean distclean mostlyclean realclean)" ""
- -include Makefile.dep
-endif
-include $(srcdir)/clean.mk
-
-# My rules
-# --------
-$(OBJDIR)/.stamp:
- mkdir -p $(OBJDIR)
- touch $(OBJDIR)/.stamp
-
-$(OBJDIR)/%.o: %.c $(OBJDIR)/.stamp
- $(CC) -c $(CFLAGS) -o $@ $<
-
-$(OBJDIR)/%.o: $(ASXXLIB)/%.c $(OBJDIR)/.stamp
- $(CC) -c $(CFLAGS) -o $@ $<
-
-$(OBJDIR)/%.o: $(ASPDKLIB)/%.c $(OBJDIR)/.stamp
- $(CC) -c $(CFLAGS) -o $@ $<
-
-$(OBJDIR)/%.o: $(UTILLIB)/%.c $(OBJDIR)/.stamp
- $(CC) -c $(CFLAGS) -o $@ $<
-
-
-# Remaking configuration
-# ----------------------
-checkconf:
- @if [ -f $(top_builddir)/devel ]; then\
- $(MAKE) -f ../conf.mk srcdir="$(srcdir)" top_builddir="$(top_builddir)" freshconf;\
- fi
-
-# End of Makefile
diff --git a/sdas/aspdk15/Makefile b/sdas/aspdk15/Makefile
deleted file mode 100644
index 452a7b9..0000000
--- a/sdas/aspdk15/Makefile
+++ /dev/null
@@ -1,145 +0,0 @@
-#
-#
-#
-
-VERSION = 3.9.3
-VERSIONHI = 3
-VERSIONLO = 9
-VERSIONP = 3
-
-SHELL = /bin/sh
-CC = gcc
-CPP = gcc -E
-INSTALL = /usr/bin/install -c
-STRIP = strip
-MAKEDEP = g++ -MM
-
-top_builddir = ../..
-top_srcdir = ../..
-
-srcdir = .
-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 = @info@
-
-EXEEXT =
-
-
-
-CPPFLAGS = -DSDCDB -DNOICE -DINDEXLIB -I. -I$(srcdir) -I$(srcdir)/../asxxsrc -I$(srcdir)/../aspdk -I$(srcdir)/../../support/util
-CFLAGS = -pipe -ggdb -g -O2 -Wall -Wno-parentheses $(CPPFLAGS)
-LDFLAGS =
-LIBS = -lm
-
-OBJDIR = obj
-
-UTILLIB = $(srcdir)/../../support/util
-UTILSRC = dbuf.c dbuf_string.c
-UTILLIBOBJS = $(UTILSRC:%.c=$(OBJDIR)/%.o)
-
-ASXXLIB = $(srcdir)/../asxxsrc
-ASXXLIBSRC = asdbg.c asdata.c asexpr.c aslex.c aslist.c asmain.c asout.c assubr.c assym.c asmcro.c sdas.c strcmpi.c
-ASXXLIBOBJS = $(ASXXLIBSRC:%.c=$(OBJDIR)/%.o)
-
-ASPDKLIB = $(srcdir)/../aspdk
-ASPDKLIBSRC = pdkmch.c pdkadr.c
-ASPDKLIBOBJS = $(ASPDKLIBSRC:%.c=$(OBJDIR)/%.o)
-
-
-SRC = pdk15pst.c pdk15mch.c
-OBJS = $(SRC:%.c=$(OBJDIR)/%.o)
-
-ASSOURCES = $(SRC) $(ASXXLIBSRC:%.c=$(ASXXLIB)/%.c) $(ASPDKLIBSRC:%.c=$(ASPDKLIB)/%.c) $(UTILSRC:%.c=$(UTILLIB)/%.c)
-
-ASOBJECTS = $(OBJS) $(ASXXLIBOBJS) $(ASPDKLIBOBJS) $(UTILLIBOBJS)
-
-ASX = $(top_builddir)/bin/sdaspdk15$(EXEEXT)
-#DEST = $(DESTDIR)$(bindir)/sdaspdk15$(EXEEXT)
-DEST = sdaspdk15
-DESTPATH = $(DESTDIR)$(bindir)/
-
-transform = s,x,x,
-
-# Compiling entire program or any subproject
-# ------------------------------------------
-all: checkconf $(ASX)
-
-$(ASX): $(ASOBJECTS)
- $(CC) $(CFLAGS) $(LDFLAGS) -o $@ $(ASOBJECTS) $(LIBS)
-
-# Compiling and installing everything and running test
-# ----------------------------------------------------
-install: all installdirs
- $(INSTALL) $(ASX) $(DESTPATH)`echo $(DEST)|sed '$(transform)'`$(EXEEXT)
- $(STRIP) $(DESTPATH)`echo $(DEST)|sed '$(transform)'`$(EXEEXT)
-
-# Deleting all the installed files
-# --------------------------------
-uninstall:
- rm -f $(DESTPATH)`echo $(DEST)|sed '$(transform)'`$(EXEEXT)
-
-
-# Performing self-test
-# --------------------
-check:
-
-
-# Performing installation test
-# ----------------------------
-installcheck:
-
-
-# Creating installation directories
-# ---------------------------------
-installdirs:
- $(INSTALL) -d $(DESTDIR)$(bindir)
-
-
-# Creating dependencies
-# ---------------------
-dep: Makefile.dep
-
-Makefile.dep: $(ASSOURCES) $(srcdir)/*.h
- $(MAKEDEP) $(CPPFLAGS) $(filter %.c,$^) >Makefile.dep
-
-ifeq "$(findstring $(MAKECMDGOALS),uninstall check installcheck installdirs \
- clean distclean mostlyclean realclean)" ""
- -include Makefile.dep
-endif
-include $(srcdir)/clean.mk
-
-# My rules
-# --------
-$(OBJDIR)/.stamp:
- mkdir -p $(OBJDIR)
- touch $(OBJDIR)/.stamp
-
-$(OBJDIR)/%.o: %.c $(OBJDIR)/.stamp
- $(CC) -c $(CFLAGS) -o $@ $<
-
-$(OBJDIR)/%.o: $(ASXXLIB)/%.c $(OBJDIR)/.stamp
- $(CC) -c $(CFLAGS) -o $@ $<
-
-$(OBJDIR)/%.o: $(ASPDKLIB)/%.c $(OBJDIR)/.stamp
- $(CC) -c $(CFLAGS) -o $@ $<
-
-$(OBJDIR)/%.o: $(UTILLIB)/%.c $(OBJDIR)/.stamp
- $(CC) -c $(CFLAGS) -o $@ $<
-
-
-# Remaking configuration
-# ----------------------
-checkconf:
- @if [ -f $(top_builddir)/devel ]; then\
- $(MAKE) -f ../conf.mk srcdir="$(srcdir)" top_builddir="$(top_builddir)" freshconf;\
- fi
-
-# End of Makefile
diff --git a/sdas/aspdk16/Makefile b/sdas/aspdk16/Makefile
deleted file mode 100644
index dc6c59f..0000000
--- a/sdas/aspdk16/Makefile
+++ /dev/null
@@ -1,145 +0,0 @@
-#
-#
-#
-
-VERSION = 3.9.3
-VERSIONHI = 3
-VERSIONLO = 9
-VERSIONP = 3
-
-SHELL = /bin/sh
-CC = gcc
-CPP = gcc -E
-INSTALL = /usr/bin/install -c
-STRIP = strip
-MAKEDEP = g++ -MM
-
-top_builddir = ../..
-top_srcdir = ../..
-
-srcdir = .
-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 = @info@
-
-EXEEXT =
-
-
-
-CPPFLAGS = -DSDCDB -DNOICE -DINDEXLIB -I. -I$(srcdir) -I$(srcdir)/../asxxsrc -I$(srcdir)/../aspdk -I$(srcdir)/../../support/util
-CFLAGS = -pipe -ggdb -g -O2 -Wall -Wno-parentheses $(CPPFLAGS)
-LDFLAGS =
-LIBS = -lm
-
-OBJDIR = obj
-
-UTILLIB = $(srcdir)/../../support/util
-UTILSRC = dbuf.c dbuf_string.c
-UTILLIBOBJS = $(UTILSRC:%.c=$(OBJDIR)/%.o)
-
-ASXXLIB = $(srcdir)/../asxxsrc
-ASXXLIBSRC = asdbg.c asdata.c asexpr.c aslex.c aslist.c asmain.c asout.c assubr.c assym.c asmcro.c sdas.c strcmpi.c
-ASXXLIBOBJS = $(ASXXLIBSRC:%.c=$(OBJDIR)/%.o)
-
-ASPDKLIB = $(srcdir)/../aspdk
-ASPDKLIBSRC = pdkmch.c pdkadr.c
-ASPDKLIBOBJS = $(ASPDKLIBSRC:%.c=$(OBJDIR)/%.o)
-
-
-SRC = pdk16pst.c pdk16mch.c
-OBJS = $(SRC:%.c=$(OBJDIR)/%.o)
-
-ASSOURCES = $(SRC) $(ASXXLIBSRC:%.c=$(ASXXLIB)/%.c) $(ASPDKLIBSRC:%.c=$(ASPDKLIB)/%.c) $(UTILSRC:%.c=$(UTILLIB)/%.c)
-
-ASOBJECTS = $(OBJS) $(ASXXLIBOBJS) $(ASPDKLIBOBJS) $(UTILLIBOBJS)
-
-ASX = $(top_builddir)/bin/sdaspdk16$(EXEEXT)
-#DEST = $(DESTDIR)$(bindir)/sdaspdk16$(EXEEXT)
-DEST = sdaspdk16
-DESTPATH = $(DESTDIR)$(bindir)/
-
-transform = s,x,x,
-
-# Compiling entire program or any subproject
-# ------------------------------------------
-all: checkconf $(ASX)
-
-$(ASX): $(ASOBJECTS)
- $(CC) $(CFLAGS) $(LDFLAGS) -o $@ $(ASOBJECTS) $(LIBS)
-
-# Compiling and installing everything and running test
-# ----------------------------------------------------
-install: all installdirs
- $(INSTALL) $(ASX) $(DESTPATH)`echo $(DEST)|sed '$(transform)'`$(EXEEXT)
- $(STRIP) $(DESTPATH)`echo $(DEST)|sed '$(transform)'`$(EXEEXT)
-
-# Deleting all the installed files
-# --------------------------------
-uninstall:
- rm -f $(DESTPATH)`echo $(DEST)|sed '$(transform)'`$(EXEEXT)
-
-
-# Performing self-test
-# --------------------
-check:
-
-
-# Performing installation test
-# ----------------------------
-installcheck:
-
-
-# Creating installation directories
-# ---------------------------------
-installdirs:
- $(INSTALL) -d $(DESTDIR)$(bindir)
-
-
-# Creating dependencies
-# ---------------------
-dep: Makefile.dep
-
-Makefile.dep: $(ASSOURCES) $(srcdir)/*.h
- $(MAKEDEP) $(CPPFLAGS) $(filter %.c,$^) >Makefile.dep
-
-ifeq "$(findstring $(MAKECMDGOALS),uninstall check installcheck installdirs \
- clean distclean mostlyclean realclean)" ""
- -include Makefile.dep
-endif
-include $(srcdir)/clean.mk
-
-# My rules
-# --------
-$(OBJDIR)/.stamp:
- mkdir -p $(OBJDIR)
- touch $(OBJDIR)/.stamp
-
-$(OBJDIR)/%.o: %.c $(OBJDIR)/.stamp
- $(CC) -c $(CFLAGS) -o $@ $<
-
-$(OBJDIR)/%.o: $(ASXXLIB)/%.c $(OBJDIR)/.stamp
- $(CC) -c $(CFLAGS) -o $@ $<
-
-$(OBJDIR)/%.o: $(ASPDKLIB)/%.c $(OBJDIR)/.stamp
- $(CC) -c $(CFLAGS) -o $@ $<
-
-$(OBJDIR)/%.o: $(UTILLIB)/%.c $(OBJDIR)/.stamp
- $(CC) -c $(CFLAGS) -o $@ $<
-
-
-# Remaking configuration
-# ----------------------
-checkconf:
- @if [ -f $(top_builddir)/devel ]; then\
- $(MAKE) -f ../conf.mk srcdir="$(srcdir)" top_builddir="$(top_builddir)" freshconf;\
- fi
-
-# End of Makefile
diff --git a/sdas/asrab/Makefile b/sdas/asrab/Makefile
deleted file mode 100644
index 439f5ce..0000000
--- a/sdas/asrab/Makefile
+++ /dev/null
@@ -1,137 +0,0 @@
-#
-#
-#
-
-VERSION = 3.9.3
-VERSIONHI = 3
-VERSIONLO = 9
-VERSIONP = 3
-
-SHELL = /bin/sh
-CC = gcc
-CPP = gcc -E
-INSTALL = /usr/bin/install -c
-STRIP = strip
-MAKEDEP = g++ -MM
-
-top_builddir = ../..
-top_srcdir = ../..
-
-srcdir = .
-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 = @info@
-
-EXEEXT =
-
-VPATH = .
-
-CPPFLAGS = -DSDCDB -DNOICE -DINDEXLIB -I. -I$(srcdir) -I$(srcdir)/../asxxsrc -I$(srcdir)/../../support/util
-CFLAGS = -pipe -ggdb -g -O2 -Wall -Wno-parentheses $(CPPFLAGS)
-LDFLAGS =
-LIBS = -lm
-
-OBJDIR = obj
-
-UTILLIB = $(srcdir)/../../support/util
-UTILSRC = dbuf.c dbuf_string.c
-UTILLIBOBJS = $(UTILSRC:%.c=$(OBJDIR)/%.o)
-
-ASXXLIB = $(srcdir)/../asxxsrc
-ASXXLIBSRC = asdbg.c asdata.c asexpr.c aslex.c aslist.c asmain.c asout.c assubr.c assym.c asmcro.c sdas.c strcmpi.c
-ASXXLIBOBJS = $(ASXXLIBSRC:%.c=$(OBJDIR)/%.o)
-
-SRC = rabpst.c rabmch.c rabadr.c
-OBJS = $(SRC:%.c=$(OBJDIR)/%.o)
-
-ASSOURCES = $(SRC) $(ASXXLIBSRC:%.c=$(ASXXLIB)/%.c) $(UTILSRC:%.c=$(UTILLIB)/%.c)
-
-ASOBJECTS = $(OBJS) $(ASXXLIBOBJS) $(UTILLIBOBJS)
-
-ASX = $(top_builddir)/bin/sdasrab$(EXEEXT)
-#DEST = $(DESTDIR)$(bindir)/sdasrab$(EXEEXT)
-DEST = sdasrab
-DESTPATH = $(DESTDIR)$(bindir)/
-
-transform = s,x,x,
-
-# Compiling entire program or any subproject
-# ------------------------------------------
-all: checkconf $(ASX)
-
-$(ASX): $(ASOBJECTS)
- $(CC) $(CFLAGS) $(LDFLAGS) -o $@ $(ASOBJECTS) $(LIBS)
-
-# Compiling and installing everything and running test
-# ----------------------------------------------------
-install: all installdirs
- $(INSTALL) $(ASX) $(DESTPATH)`echo $(DEST)|sed '$(transform)'`$(EXEEXT)
- $(STRIP) $(DESTPATH)`echo $(DEST)|sed '$(transform)'`$(EXEEXT)
-
-# Deleting all the installed files
-# --------------------------------
-uninstall:
- rm -f $(DESTPATH)`echo $(DEST)|sed '$(transform)'`$(EXEEXT)
-
-
-# Performing self-test
-# --------------------
-check:
-
-
-# Performing installation test
-# ----------------------------
-installcheck:
-
-
-# Creating installation directories
-# ---------------------------------
-installdirs:
- $(INSTALL) -d $(DESTDIR)$(bindir)
-
-
-# Creating dependencies
-# ---------------------
-dep: Makefile.dep
-
-Makefile.dep: $(ASSOURCES) $(srcdir)/*.h
- $(MAKEDEP) $(CPPFLAGS) $(filter %.c,$^) >Makefile.dep
-
-ifeq "$(findstring $(MAKECMDGOALS),uninstall check installcheck installdirs \
- clean distclean mostlyclean realclean)" ""
- -include Makefile.dep
-endif
-include $(srcdir)/clean.mk
-
-# My rules
-# --------
-$(OBJDIR)/.stamp:
- mkdir -p $(OBJDIR)
- touch $(OBJDIR)/.stamp
-
-$(OBJDIR)/%.o: %.c $(OBJDIR)/.stamp
- $(CC) -c $(CFLAGS) -o $@ $<
-
-$(OBJDIR)/%.o: $(ASXXLIB)/%.c $(OBJDIR)/.stamp
- $(CC) -c $(CFLAGS) -o $@ $<
-
-$(OBJDIR)/%.o: $(UTILLIB)/%.c $(OBJDIR)/.stamp
- $(CC) -c $(CFLAGS) -o $@ $<
-
-
-# Remaking configuration
-# ----------------------
-checkconf:
- @if [ -f $(top_builddir)/devel ]; then\
- $(MAKE) -f ../conf.mk srcdir="$(srcdir)" top_builddir="$(top_builddir)" freshconf;\
- fi
-
-# End of Makefile
diff --git a/sdas/asstm8/Makefile b/sdas/asstm8/Makefile
deleted file mode 100644
index 2fc28f7..0000000
--- a/sdas/asstm8/Makefile
+++ /dev/null
@@ -1,137 +0,0 @@
-#
-#
-#
-
-VERSION = 0.0.0
-VERSIONHI = 0
-VERSIONLO = 0
-VERSIONP = 0
-
-SHELL = /bin/sh
-CC = gcc
-CPP = gcc -E
-INSTALL = /usr/bin/install -c
-STRIP = strip
-MAKEDEP = g++ -MM
-
-top_builddir = ../..
-top_srcdir = ../..
-
-srcdir = .
-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 = @info@
-
-EXEEXT =
-
-
-
-CPPFLAGS = -DSDCDB -DNOICE -DINDEXLIB -I. -I$(srcdir) -I$(srcdir)/../asxxsrc -I$(srcdir)/../../support/util
-CFLAGS = -pipe -ggdb -g -Og -Wall -Wno-parentheses $(CPPFLAGS)
-LDFLAGS =
-LIBS = -lm
-
-OBJDIR = obj
-
-UTILLIB = $(srcdir)/../../support/util
-UTILSRC = dbuf.c dbuf_string.c
-UTILLIBOBJS = $(UTILSRC:%.c=$(OBJDIR)/%.o)
-
-ASXXLIB = $(srcdir)/../asxxsrc
-ASXXLIBSRC = asdbg.c asdata.c asexpr.c aslex.c aslist.c asmain.c asout.c assubr.c assym.c asmcro.c sdas.c strcmpi.c
-ASXXLIBOBJS = $(ASXXLIBSRC:%.c=$(OBJDIR)/%.o)
-
-SRC = stm8pst.c stm8mch.c stm8adr.c
-OBJS = $(SRC:%.c=$(OBJDIR)/%.o)
-
-ASSOURCES = $(SRC) $(ASXXLIBSRC:%.c=$(ASXXLIB)/%.c) $(UTILSRC:%.c=$(UTILLIB)/%.c)
-
-ASOBJECTS = $(OBJS) $(ASXXLIBOBJS) $(UTILLIBOBJS)
-
-ASX = $(top_builddir)/bin/sdasstm8$(EXEEXT)
-#DEST = $(DESTDIR)$(bindir)/sdasstm8$(EXEEXT)
-DEST = sdasstm8
-DESTPATH = $(DESTDIR)$(bindir)/
-
-transform = s,x,x,
-
-# Compiling entire program or any subproject
-# ------------------------------------------
-all: checkconf $(ASX)
-
-$(ASX): $(ASOBJECTS)
- $(CC) $(CFLAGS) $(LDFLAGS) -o $@ $(ASOBJECTS) $(LIBS)
-
-# Compiling and installing everything and running test
-# ----------------------------------------------------
-install: all installdirs
- $(INSTALL) $(ASX) $(DESTPATH)`echo $(DEST)|sed '$(transform)'`$(EXEEXT)
- $(STRIP) $(DESTPATH)`echo $(DEST)|sed '$(transform)'`$(EXEEXT)
-
-# Deleting all the installed files
-# --------------------------------
-uninstall:
- rm -f $(DESTPATH)`echo $(DEST)|sed '$(transform)'`$(EXEEXT)
-
-
-# Performing self-test
-# --------------------
-check:
-
-
-# Performing installation test
-# ----------------------------
-installcheck:
-
-
-# Creating installation directories
-# ---------------------------------
-installdirs:
- $(INSTALL) -d $(DESTDIR)$(bindir)
-
-
-# Creating dependencies
-# ---------------------
-dep: Makefile.dep
-
-Makefile.dep: $(ASSOURCES) $(srcdir)/*.h
- $(MAKEDEP) $(CPPFLAGS) $(filter %.c,$^) >Makefile.dep
-
-ifeq "$(findstring $(MAKECMDGOALS),uninstall check installcheck installdirs \
- clean distclean mostlyclean realclean)" ""
- -include Makefile.dep
-endif
-include $(srcdir)/clean.mk
-
-# My rules
-# --------
-$(OBJDIR)/.stamp:
- mkdir -p $(OBJDIR)
- touch $(OBJDIR)/.stamp
-
-$(OBJDIR)/%.o: %.c $(OBJDIR)/.stamp
- $(CC) -c $(CFLAGS) -o $@ $<
-
-$(OBJDIR)/%.o: $(ASXXLIB)/%.c $(OBJDIR)/.stamp
- $(CC) -c $(CFLAGS) -o $@ $<
-
-$(OBJDIR)/%.o: $(UTILLIB)/%.c $(OBJDIR)/.stamp
- $(CC) -c $(CFLAGS) -o $@ $<
-
-
-# Remaking configuration
-# ----------------------
-checkconf:
- @if [ -f $(top_builddir)/devel ]; then\
- $(MAKE) -f ../conf.mk srcdir="$(srcdir)" top_builddir="$(top_builddir)" freshconf;\
- fi
-
-# End of Makefile
diff --git a/sdas/astlcs90/Makefile b/sdas/astlcs90/Makefile
deleted file mode 100644
index fdc4529..0000000
--- a/sdas/astlcs90/Makefile
+++ /dev/null
@@ -1,137 +0,0 @@
-#
-#
-#
-
-VERSION = 3.9.3
-VERSIONHI = 3
-VERSIONLO = 9
-VERSIONP = 3
-
-SHELL = /bin/sh
-CC = gcc
-CPP = gcc -E
-INSTALL = /usr/bin/install -c
-STRIP = strip
-MAKEDEP = g++ -MM
-
-top_builddir = ../..
-top_srcdir = ../..
-
-srcdir = .
-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 = @info@
-
-EXEEXT =
-
-
-
-CPPFLAGS = -DSDCDB -DNOICE -DINDEXLIB -I. -I$(srcdir) -I$(srcdir)/../asxxsrc -I$(srcdir)/../../support/util
-CFLAGS = -pipe -ggdb -g -O2 -Wall -Wno-parentheses $(CPPFLAGS)
-LDFLAGS =
-LIBS = -lm
-
-OBJDIR = obj
-
-UTILLIB = $(srcdir)/../../support/util
-UTILSRC = dbuf.c dbuf_string.c
-UTILLIBOBJS = $(UTILSRC:%.c=$(OBJDIR)/%.o)
-
-ASXXLIB = $(srcdir)/../asxxsrc
-ASXXLIBSRC = asdbg.c asdata.c asexpr.c aslex.c aslist.c asmain.c asout.c assubr.c assym.c asmcro.c sdas.c strcmpi.c
-ASXXLIBOBJS = $(ASXXLIBSRC:%.c=$(OBJDIR)/%.o)
-
-SRC = t90pst.c t90mch.c t90adr.c
-OBJS = $(SRC:%.c=$(OBJDIR)/%.o)
-
-ASSOURCES = $(SRC) $(ASXXLIBSRC:%.c=$(ASXXLIB)/%.c) $(UTILSRC:%.c=$(UTILLIB)/%.c)
-
-ASOBJECTS = $(OBJS) $(ASXXLIBOBJS) $(UTILLIBOBJS)
-
-ASX = $(top_builddir)/bin/sdastlcs90$(EXEEXT)
-#DEST = $(DESTDIR)$(bindir)/sdastlcs90$(EXEEXT)
-DEST = sdastlcs90
-DESTPATH = $(DESTDIR)$(bindir)/
-
-transform = s,x,x,
-
-# Compiling entire program or any subproject
-# ------------------------------------------
-all: checkconf $(ASX)
-
-$(ASX): $(ASOBJECTS)
- $(CC) $(CFLAGS) $(LDFLAGS) -o $@ $(ASOBJECTS) $(LIBS)
-
-# Compiling and installing everything and running test
-# ----------------------------------------------------
-install: all installdirs
- $(INSTALL) $(ASX) $(DESTPATH)`echo $(DEST)|sed '$(transform)'`$(EXEEXT)
- $(STRIP) $(DESTPATH)`echo $(DEST)|sed '$(transform)'`$(EXEEXT)
-
-# Deleting all the installed files
-# --------------------------------
-uninstall:
- rm -f $(DESTPATH)`echo $(DEST)|sed '$(transform)'`$(EXEEXT)
-
-
-# Performing self-test
-# --------------------
-check:
-
-
-# Performing installation test
-# ----------------------------
-installcheck:
-
-
-# Creating installation directories
-# ---------------------------------
-installdirs:
- $(INSTALL) -d $(DESTDIR)$(bindir)
-
-
-# Creating dependencies
-# ---------------------
-dep: Makefile.dep
-
-Makefile.dep: $(ASSOURCES) $(srcdir)/*.h
- $(MAKEDEP) $(CPPFLAGS) $(filter %.c,$^) >Makefile.dep
-
-ifeq "$(findstring $(MAKECMDGOALS),uninstall check installcheck installdirs \
- clean distclean mostlyclean realclean)" ""
- -include Makefile.dep
-endif
-include $(srcdir)/clean.mk
-
-# My rules
-# --------
-$(OBJDIR)/.stamp:
- mkdir -p $(OBJDIR)
- touch $(OBJDIR)/.stamp
-
-$(OBJDIR)/%.o: %.c $(OBJDIR)/.stamp
- $(CC) -c $(CFLAGS) -o $@ $<
-
-$(OBJDIR)/%.o: $(ASXXLIB)/%.c $(OBJDIR)/.stamp
- $(CC) -c $(CFLAGS) -o $@ $<
-
-$(OBJDIR)/%.o: $(UTILLIB)/%.c $(OBJDIR)/.stamp
- $(CC) -c $(CFLAGS) -o $@ $<
-
-
-# Remaking configuration
-# ----------------------
-checkconf:
- @if [ -f $(top_builddir)/devel ]; then\
- $(MAKE) -f ../conf.mk srcdir="$(srcdir)" top_builddir="$(top_builddir)" freshconf;\
- fi
-
-# End of Makefile
diff --git a/sdas/asz80/Makefile b/sdas/asz80/Makefile
deleted file mode 100644
index 8862fb1..0000000
--- a/sdas/asz80/Makefile
+++ /dev/null
@@ -1,137 +0,0 @@
-#
-#
-#
-
-VERSION = 3.9.3
-VERSIONHI = 3
-VERSIONLO = 9
-VERSIONP = 3
-
-SHELL = /bin/sh
-CC = gcc
-CPP = gcc -E
-INSTALL = /usr/bin/install -c
-STRIP = strip
-MAKEDEP = g++ -MM
-
-top_builddir = ../..
-top_srcdir = ../..
-
-srcdir = .
-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 = @info@
-
-EXEEXT =
-
-
-
-CPPFLAGS = -DSDCDB -DNOICE -DINDEXLIB -I. -I$(srcdir) -I$(srcdir)/../asxxsrc -I$(srcdir)/../../support/util
-CFLAGS = -pipe -ggdb -g -O2 -Wall -Wno-parentheses $(CPPFLAGS)
-LDFLAGS =
-LIBS = -lm
-
-OBJDIR = obj
-
-UTILLIB = $(srcdir)/../../support/util
-UTILSRC = dbuf.c dbuf_string.c
-UTILLIBOBJS = $(UTILSRC:%.c=$(OBJDIR)/%.o)
-
-ASXXLIB = $(srcdir)/../asxxsrc
-ASXXLIBSRC = asdbg.c asdata.c asexpr.c aslex.c aslist.c asmain.c asout.c assubr.c assym.c asmcro.c sdas.c strcmpi.c
-ASXXLIBOBJS = $(ASXXLIBSRC:%.c=$(OBJDIR)/%.o)
-
-SRC = z80pst.c z80mch.c z80adr.c
-OBJS = $(SRC:%.c=$(OBJDIR)/%.o)
-
-ASSOURCES = $(SRC) $(ASXXLIBSRC:%.c=$(ASXXLIB)/%.c) $(UTILSRC:%.c=$(UTILLIB)/%.c)
-
-ASOBJECTS = $(OBJS) $(ASXXLIBOBJS) $(UTILLIBOBJS)
-
-ASX = $(top_builddir)/bin/sdasz80$(EXEEXT)
-#DEST = $(DESTDIR)$(bindir)/sdasz80$(EXEEXT)
-DEST = sdasz80
-DESTPATH = $(DESTDIR)$(bindir)/
-
-transform = s,x,x,
-
-# Compiling entire program or any subproject
-# ------------------------------------------
-all: checkconf $(ASX)
-
-$(ASX): $(ASOBJECTS)
- $(CC) $(CFLAGS) $(LDFLAGS) -o $@ $(ASOBJECTS) $(LIBS)
-
-# Compiling and installing everything and running test
-# ----------------------------------------------------
-install: all installdirs
- $(INSTALL) $(ASX) $(DESTPATH)`echo $(DEST)|sed '$(transform)'`$(EXEEXT)
- $(STRIP) $(DESTPATH)`echo $(DEST)|sed '$(transform)'`$(EXEEXT)
-
-# Deleting all the installed files
-# --------------------------------
-uninstall:
- rm -f $(DESTPATH)`echo $(DEST)|sed '$(transform)'`$(EXEEXT)
-
-
-# Performing self-test
-# --------------------
-check:
-
-
-# Performing installation test
-# ----------------------------
-installcheck:
-
-
-# Creating installation directories
-# ---------------------------------
-installdirs:
- $(INSTALL) -d $(DESTDIR)$(bindir)
-
-
-# Creating dependencies
-# ---------------------
-dep: Makefile.dep
-
-Makefile.dep: $(ASSOURCES) $(srcdir)/*.h
- $(MAKEDEP) $(CPPFLAGS) $(filter %.c,$^) >Makefile.dep
-
-ifeq "$(findstring $(MAKECMDGOALS),uninstall check installcheck installdirs \
- clean distclean mostlyclean realclean)" ""
- -include Makefile.dep
-endif
-include $(srcdir)/clean.mk
-
-# My rules
-# --------
-$(OBJDIR)/.stamp:
- mkdir -p $(OBJDIR)
- touch $(OBJDIR)/.stamp
-
-$(OBJDIR)/%.o: %.c $(OBJDIR)/.stamp
- $(CC) -c $(CFLAGS) -o $@ $<
-
-$(OBJDIR)/%.o: $(ASXXLIB)/%.c $(OBJDIR)/.stamp
- $(CC) -c $(CFLAGS) -o $@ $<
-
-$(OBJDIR)/%.o: $(UTILLIB)/%.c $(OBJDIR)/.stamp
- $(CC) -c $(CFLAGS) -o $@ $<
-
-
-# Remaking configuration
-# ----------------------
-checkconf:
- @if [ -f $(top_builddir)/devel ]; then\
- $(MAKE) -f ../conf.mk srcdir="$(srcdir)" top_builddir="$(top_builddir)" freshconf;\
- fi
-
-# End of Makefile
diff --git a/sdas/linksrc/Makefile b/sdas/linksrc/Makefile
deleted file mode 100644
index 237545d..0000000
--- a/sdas/linksrc/Makefile
+++ /dev/null
@@ -1,172 +0,0 @@
-#
-#
-#
-
-VERSION = 0.0.0
-VERSIONHI = 0
-VERSIONLO = 0
-VERSIONP = 0
-
-SHELL = /bin/sh
-CC = gcc
-CPP = gcc -E
-INSTALL = /usr/bin/install -c
-STRIP = strip
-MAKEDEP = g++ -MM
-
-top_builddir = ../..
-top_srcdir = ../..
-
-srcdir = .
-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 = @info@
-
-EXEEXT =
-
-
-
-CPPFLAGS = -I.. -I$(srcdir)/..
-CFLAGS = -pipe -ggdb -g -Og -Wall -Wno-parentheses -DINDEXLIB -DUNIX -I. -I$(srcdir)
-LDFLAGS =
-
-OBJDIR = obj
-
-ASXXLIB = $(srcdir)/../asxxsrc
-
-ASXXLIBSRC = strcmpi.c
-
-SRC = lk_readnl.c lkaomf51.c lkar.c lkarea.c lkdata.c lkelf.c lkeval.c \
- lkhead.c lklex.c lklib.c lklibr.c lklist.c lkmain.c lkmem.c \
- lknoice.c lkout.c lkrel.c lkrloc.c lkrloc3.c lks19.c lksdcclib.c \
- lksym.c sdld.c lksdcdb.c lkbank.c
-
-LKSOURCES = $(SRC) $(ASXXLIBSRC:%.c=$(ASXXLIB)/%.c)
-
-OBJS = $(SRC:%.c=$(OBJDIR)/%.o)
-ASXXLIBOBJS = $(ASXXLIBSRC:%.c=$(OBJDIR)/%.o)
-LKOBJECTS = $(OBJS) $(LKOBJS) $(ASXXLIBOBJS)
-
-$(LKOBJECTS) : aslink.h
-
-ASLINK = $(top_builddir)/bin/sdld$(EXEEXT)
-
-transform = s,x,x,
-
-# Compiling entire program or any subproject
-# ------------------------------------------
-all: sdcc-ld8051 sdcc-ldz80 sdcc-ldgb sdcc-ld6808 sdcc-ldstm8 sdcc-ldpdk
-
-sdcc-ld8051: checkconf $(ASLINK)
-
-sdcc-ldz80: checkconf $(top_builddir)/bin/sdldz80$(EXEEXT)
-
-sdcc-ldgb: checkconf $(top_builddir)/bin/sdldgb$(EXEEXT)
-
-sdcc-ld6808: checkconf $(top_builddir)/bin/sdld6808$(EXEEXT)
-
-sdcc-ldstm8: checkconf $(top_builddir)/bin/sdldstm8$(EXEEXT)
-
-sdcc-ldpdk: checkconf $(top_builddir)/bin/sdldpdk$(EXEEXT)
-
-$(top_builddir)/bin/sdldz80$(EXEEXT) $(top_builddir)/bin/sdldgb$(EXEEXT) $(top_builddir)/bin/sdldstm8$(EXEEXT) $(top_builddir)/bin/sdld6808$(EXEEXT) $(top_builddir)/bin/sdldpdk$(EXEEXT): $(ASLINK)
- cp -p $(ASLINK) $@
-
-$(ASLINK): $(LKOBJECTS)
- $(CC) $(CFLAGS) $(LDFLAGS) -o $@ $(LKOBJECTS)
-
-# Compiling and installing everything and running test
-# ----------------------------------------------------
-install: all installdirs
- $(INSTALL) $(top_builddir)/bin/sdld$(EXEEXT) $(DESTDIR)$(bindir)/`echo 'sdld' | sed '$(transform)'`$(EXEEXT)
- $(STRIP) $(DESTDIR)$(bindir)/`echo 'sdld' | sed '$(transform)'`$(EXEEXT)
- if [ "`grep stm8 $(top_builddir)/ports.build`" = "stm8" ]; \
- then \
- $(INSTALL) $(top_builddir)/bin/sdldstm8$(EXEEXT) $(DESTDIR)$(bindir)/`echo 'sdldstm8' | sed '$(transform)'`$(EXEEXT); \
- $(STRIP) $(DESTDIR)$(bindir)/`echo 'sdldstm8' | sed '$(transform)'`$(EXEEXT); \
- fi
- if [ "`grep hc08 $(top_builddir)/ports.build`" = "hc08" ]; \
- then \
- $(INSTALL) $(top_builddir)/bin/sdld6808$(EXEEXT) $(DESTDIR)$(bindir)/`echo 'sdld6808' | sed '$(transform)'`$(EXEEXT); \
- $(STRIP) $(DESTDIR)$(bindir)/`echo 'sdld6808' | sed '$(transform)'`$(EXEEXT); \
- fi
- if [ "`grep z80 $(top_builddir)/ports.build`" = "z80" ]; \
- then \
- $(INSTALL) $(top_builddir)/bin/sdldz80$(EXEEXT) $(DESTDIR)$(bindir)/`echo 'sdldz80' | sed '$(transform)'`$(EXEEXT); \
- $(STRIP) $(DESTDIR)$(bindir)/`echo 'sdldz80' | sed '$(transform)'`$(EXEEXT); \
- $(INSTALL) $(top_builddir)/bin/sdldgb$(EXEEXT) $(DESTDIR)$(bindir)/`echo 'sdldgb' | sed '$(transform)'`$(EXEEXT); \
- $(STRIP) $(DESTDIR)$(bindir)/`echo 'sdldgb' | sed '$(transform)'`$(EXEEXT); \
- fi
- if [ "`grep pdk $(top_builddir)/ports.build`" = "pdk" ]; \
- then \
- $(INSTALL) $(top_builddir)/bin/sdldpdk$(EXEEXT) $(DESTDIR)$(bindir)/`echo 'sdldpdk' | sed '$(transform)'`$(EXEEXT); \
- $(STRIP) $(DESTDIR)$(bindir)/`echo 'sdldpdk' | sed '$(transform)'`$(EXEEXT); \
- fi
-
-# Deleting all the installed files
-# --------------------------------
-uninstall:
- for ld in $(top_builddir)/bin/sdld $(top_builddir)/bin/sdldz80 $(top_builddir)/bin/sdldgb $(top_builddir)/bin/sdldstm8 $(top_builddir)/bin/sdld6808; $(top_builddir)/bin/sdldpdk; \
- do \
- rm -f $(DESTDIR)$(bindir)/`echo \`basename $$ld\` | sed '$(transform)'`$(EXEEXT); \
- done
-
-
-# Performing self-test
-# --------------------
-check:
-
-
-# Performing installation test
-# ----------------------------
-installcheck:
-
-
-# Creating installation directories
-# ---------------------------------
-installdirs:
- $(INSTALL) -d $(DESTDIR)$(bindir)
-
-
-# Creating dependencies
-# ---------------------
-dep: Makefile.dep
-
-Makefile.dep: $(LKSOURCES) $(top_builddir)/*.h
- $(MAKEDEP) $(CPPFLAGS) $(filter %.c,$^) >Makefile.dep
-
-ifeq "$(findstring $(MAKECMDGOALS),uninstall check installcheck installdirs \
- clean distclean mostlyclean realclean)" ""
- -include Makefile.dep
-endif
-include $(srcdir)/clean.mk
-
-# My rules
-# --------
-$(OBJDIR)/.stamp:
- mkdir -p $(OBJDIR)
- touch $(OBJDIR)/.stamp
-
-$(OBJDIR)/%.o: %.c $(OBJDIR)/.stamp
- $(CC) -c $(CFLAGS) -o $@ $<
-
-$(OBJDIR)/%.o: $(ASXXLIB)/%.c $(OBJDIR)/.stamp
- $(CC) -c $(CFLAGS) -o $@ $<
-
-
-# Remaking configuration
-# ----------------------
-checkconf:
- @if [ -f $(top_builddir)/devel ]; then\
- $(MAKE) -f ../conf.mk srcdir="$(srcdir)" top_builddir="$(top_builddir)" freshconf;\
- fi
-
-# End of Makefile