summaryrefslogtreecommitdiff
path: root/sdas
diff options
context:
space:
mode:
authorXavi Del Campo <xavi.dcr@tutanota.com>2019-11-06 04:21:13 +0100
committerXavi Del Campo <xavi.dcr@tutanota.com>2019-11-06 04:34:31 +0100
commit53953142e739085cc82a75dfd6b75b02e1e90eb0 (patch)
tree87d425f00dc4fc04639e4d8888bbd8cb59c9babc /sdas
parentcf1d3aec552ebaea437935e74e5eabda4bd989e7 (diff)
downloadsdcc-gas-53953142e739085cc82a75dfd6b75b02e1e90eb0.tar.gz
Removed intermediate files
Diffstat (limited to 'sdas')
-rw-r--r--sdas/as8051/Makefile137
1 files changed, 0 insertions, 137 deletions
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