]> git.sur5r.net Git - cc65/commitdiff
Several minor adjustments.
authorOliver Schmidt <ol.sc@web.de>
Sun, 9 Mar 2014 12:56:32 +0000 (13:56 +0100)
committerOliver Schmidt <ol.sc@web.de>
Sun, 9 Mar 2014 12:56:32 +0000 (13:56 +0100)
.travis.yml
Makefile.gh-pages
libsrc/Makefile

index 3a9583e9448e16768d1992654a7fb2d752803738..e2f64a7b73ef538c867b190e16bf4bf6a5ef8247 100644 (file)
@@ -4,7 +4,7 @@ install:
   - sudo apt-get install linuxdoc-tools linuxdoc-tools-info binutils-mingw-w64-i686 gcc-mingw-w64-i686
 script:
   - make
-  - make -C src clean all CROSS_COMPILE=i686-w64-mingw32-
+  - make -C src clean bin CROSS_COMPILE=i686-w64-mingw32-
   - make doc zip
 after_success:
   - make -f Makefile.gh-pages
index 573edfe9b160f9b73eb66ef080b0e7c46a295b66..872232666a8bddb0b8edc9023583e04bdda76fff 100644 (file)
@@ -5,7 +5,7 @@
 GH_PAGES = ../gh-pages
 
 all:
-       date +%D | zip -z cc65
+       date +%F | zip -z cc65
 ifdef GH_TOKEN
        git clone --branch=gh-pages https://$(GH_TOKEN)@github.com/oliverschmidt/cc65.git $(GH_PAGES)
        cd $(GH_PAGES) && git config user.name "Oliver Schmidt"
@@ -14,7 +14,7 @@ ifdef GH_TOKEN
        cd $(GH_PAGES) && $(RM) -r doc download
        cd $(GH_PAGES) && mkdir doc download
        cp html/*.* $(GH_PAGES)/doc
-       cp cc65.zip $(GH_PAGES)/download/cc65-snapshot.zip
+       cp cc65.zip $(GH_PAGES)/download/cc65-snapshot-win32.zip
        cd $(GH_PAGES) && git add -A doc download
        cd $(GH_PAGES) && git commit -m "Updated from commit $(TRAVIS_COMMIT)."
        cd $(GH_PAGES) && git push
index 3a355b954c714846b84dcf14be1ff96a6f88cb19..86eb80b7ccd4bd520a9ca84231f71fcc1b16cfb7 100644 (file)
@@ -33,13 +33,13 @@ DRVTYPES = emd \
            ser \
            tgi
 
-OUTPUTDIRS = lib         \
-             $(DRVTYPES) \
-             targetutil  \
-             asminc      \
-             cfg         \
-             include     \
-             $(subst ../,,$(filter-out $(wildcard ../include/*.*),$(wildcard ../include/*)))
+OUTPUTDIRS := lib         \
+              $(DRVTYPES) \
+              targetutil  \
+              asminc      \
+              cfg         \
+              include     \
+              $(subst ../,,$(filter-out $(wildcard ../include/*.*),$(wildcard ../include/*)))
 
 .PHONY: all mostlyclean clean install zip lib $(TARGETS)