diff options
| author | Xavi Del Campo <xavi.dcr@tutanota.com> | 2019-11-05 17:56:35 +0100 |
|---|---|---|
| committer | Xavi Del Campo <xavi.dcr@tutanota.com> | 2019-11-05 17:56:35 +0100 |
| commit | e524f157266c07a7a4cf3b766edd6ff9db98e4f4 (patch) | |
| tree | 3dcbf507b5ec87d297f833df79cb532c3844032f /device/lib/ds400 | |
| parent | 1dcefbf527e52315abfe3b4871272b3fd9bb0f4b (diff) | |
| download | sdcc-gas-e524f157266c07a7a4cf3b766edd6ff9db98e4f4.tar.gz | |
Removed intermediate files
Diffstat (limited to 'device/lib/ds400')
| -rw-r--r-- | device/lib/ds400/Makefile | 67 | ||||
| -rw-r--r-- | device/lib/ds400/Makefile.dep | 9 |
2 files changed, 0 insertions, 76 deletions
diff --git a/device/lib/ds400/Makefile b/device/lib/ds400/Makefile deleted file mode 100644 index 1166d95..0000000 --- a/device/lib/ds400/Makefile +++ /dev/null @@ -1,67 +0,0 @@ -# libc/ds400 Makefile - - -srcdir = . -top_builddir = ../../.. - -LIB_TYPE = RANLIB - -CC = $(top_builddir)/bin/sdcc - -# override PORTDIR defined by super (parent) makefile -override PORTDIR = ../build/ds400 - -#VERBOSE = --verbose - -OBJECTS = tinibios.rel memcpyx.rel ds400rom.rel - -SOURCES = $(patsubst %.rel,%.c,$(OBJECTS)) - -CPPFLAGS = -I$(srcdir)/../../include -I$(srcdir)/../../include/ds400 -CFLAGS = -mds400 $(CPPFLAGS) $(VERBOSE) --std-c11 - -all: $(OBJECTS) $(PORTDIR)/libds400.lib - -clean: - rm -f *.lst *.rel *.sym *.cdb *.asm \#* *~ *.rst *.hex - rm -f *.ihx temp.lnk *.map *.lib - -distclean: clean - rm -f Makefile Makefile.dep - -$(PORTDIR)/libds400.lib: $(OBJECTS) -ifeq ($(LIB_TYPE), SDCCLIB) - rm -f $@; \ - $(top_builddir)/bin/sdcclib -a $@ $(OBJECTS) -else - ifeq ($(LIB_TYPE), AR) - $(top_builddir)/bin/sdar -rcSD $@ $(OBJECTS) - else - ifeq ($(LIB_TYPE), RANLIB) - $(top_builddir)/bin/sdar -rcD $@ $(OBJECTS) - else - rm -f $@; - for libfile in $(basename $(OBJECTS)); do echo $$libfile >>$@; done - cp $(OBJECTS) $(PORTDIR) - endif - endif -endif - -%.rel: %.c - $(CC) -c $(CFLAGS) $< - -# Creating dependencies -# --------------------- -depend: Makefile.dep - -Makefile.dep: $(SOURCES) - rm -f Makefile.dep - for i in $^; do \ - $(CC) -M $(CPPFLAGS) $$i >$${i}.dep; \ - cat $${i}.dep >>Makefile.dep; \ - rm $${i}.dep; \ - done - -ifeq "$(findstring $(MAKECMDGOALS),clean distclean)" "" - -include Makefile.dep -endif diff --git a/device/lib/ds400/Makefile.dep b/device/lib/ds400/Makefile.dep deleted file mode 100644 index 4d596e6..0000000 --- a/device/lib/ds400/Makefile.dep +++ /dev/null @@ -1,9 +0,0 @@ -tinibios.rel: tinibios.c ../../include/tinibios.h \ - ../../include/ds80c390.h ../../include/time.h \ - ../../include/ds400/ds400rom.h ../../include/stdio.h \ - ../../include/stdarg.h ../../include/sdcc-lib.h \ - ../../include/asm/mcs51/features.h -memcpyx.rel: memcpyx.c ../../include/string.h -ds400rom.rel: ds400rom.c ../../include/stdio.h ../../include/stdarg.h \ - ../../include/sdcc-lib.h ../../include/asm/mcs51/features.h \ - ../../include/ds400/ds400rom.h |
