gbdk-2020 | GameBoy Development Kit |
| download: https://git.y1.nz/archives/gbdk.tar.gz | |
| README | Files | Log | Refs | LICENSE |
commit 7028bded45f325923073529fc743481b52294d61 parent ca9d8a911f480b2649fc7ac0d6380c13704f4569 Author: Toxa <56631470+untoxa@users.noreply.github.com> Date: Sat, 14 Nov 2020 00:04:40 +0300 Merge pull request #84 from jserv/remove-cvs-specific Drop CVS related entries Diffstat:
| M | Makefile | 30 | +++--------------------------- |
1 file changed, 3 insertions(+), 27 deletions(-)
diff --git a/Makefile b/Makefile @@ -6,12 +6,10 @@ # TOPDIR = $(shell pwd) -# Package name, used for tarballs and cvs +# Package name, used for tarballs PKG = gbdk # Version, used for tarballs VER = 3.00 -# Short version, used for cvs tags -SHORTVER = 300 # Prefix to add to the standard tools. Usefull for a standard gcc # cross-compile. @@ -99,7 +97,6 @@ src: clean rm -rf gbdk mkdir -p gbdk cp -r Makefile sdcc gbdk-lib gbdk-support gbdk - rm -rf `find gbdk -name CVS` tar czf gbdk-$(VER).tar.gz gbdk # Base rules @@ -115,23 +112,6 @@ $(BUILDDIR)/bin: build-dir-clean: rm -r $(BUILDDIR) -# Setup rules -CVSFLAGS = -r $(PKG)-$(SHORTVER) - -setup-from-local: - rm -rf sdcc gbdk-lib gbdk-support - ln -s ../sdcc - ln -s ../gbdk-lib - ln -s ../gbdk-support - -setup-from-cvs: - cvs -d :pserver:anonymous@cvs.sdcc.sourceforge.net:/cvsroot/sdcc -q co $(CVSFLAGS) sdcc - cvs -d :pserver:anonymous@cvs.gbdk.sourceforge.net:/cvsroot/gbdk -q co $(CVSFLAGS) gbdk-lib - cvs -d :pserver:anonymous@cvs.gbdk.sourceforge.net:/cvsroot/gbdk -q co $(CVSFLAGS) gbdk-support - -# Rules for sdcc - - # Rules for gbdk-support gbdk-support-build: @echo Building lcc @@ -207,7 +187,7 @@ else endif # Final binary -binary: binary-tidyup +binary: ifeq ($(ARCHIVETYPE),zip) rm -f $(TOPDIR)/gbdk-$(VER)-$(TARGETOS).zip cd $(BUILDDIR)/..; zip -9Xrq $(TOPDIR)/gbdk-$(VER)-$(TARGETOS).zip gbdk @@ -216,9 +196,6 @@ else cd $(BUILDDIR)/..; tar czf $(TOPDIR)/gbdk-$(VER)-$(TARGETOS).tar.gz gbdk endif -binary-tidyup: - rm -rf `find $(BUILDDIR) -name CVS` - # Install install: native-build mkdir -p $(TARGETDIR) @@ -242,4 +219,4 @@ endif GBDKDOCSDIR="$(GBDKDOCSDIR)" GBDKLIBDIR="$(GBDKLIBDIR)" $(DOXYGENCMD) "$(GBDKDOCSDIR)/config/gbdk-2020-doxyfile" doxygen-clean: - rm -rf $(GBDKDOCSDIR)/api - + rm -rf $(GBDKDOCSDIR)/api
This webpage is intended to be an accessible preview of this repository. To get a fuller picture, clone it and use the git CLI.