From 268a53de823a6750d6256ee1fb1e7707b4b45740 Mon Sep 17 00:00:00 2001 From: Xavier ASUS Date: Fri, 18 Oct 2019 00:31:54 +0200 Subject: sdcc-3.9.0 fork implementing GNU assembler syntax This fork aims to provide better support for stm8-binutils --- support/scripts/Makefile | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 support/scripts/Makefile (limited to 'support/scripts/Makefile') diff --git a/support/scripts/Makefile b/support/scripts/Makefile new file mode 100644 index 0000000..eb94eac --- /dev/null +++ b/support/scripts/Makefile @@ -0,0 +1,21 @@ + +srcdir = . +top_builddir = ../.. + +include $(top_builddir)/Makefile.common + +TARGET = $(top_builddir)/bin/as2gbmap + +all: + cp $(srcdir)/as2gbmap.py $(TARGET) && chmod +x $(TARGET) + +install: all installdirs + $(INSTALL) $(TARGET) $(DESTDIR)$(bindir)/`echo as2gbmap|sed '$(transform)'` + +installdirs: + -$(INSTALL) -d $(DESTDIR)$(bindir) + +uninstall: + rm -rf $(DESTDIR)$(bindir)/`echo as2gbmap|sed '$(transform)'` + +include $(srcdir)/clean.mk -- cgit v1.2.3