diff options
author | Nick White <nick.white@proporta.com> | 2011-11-09 13:28:21 +0000 |
---|---|---|
committer | Nick White <git@njw.me.uk> | 2011-11-09 22:58:19 +0000 |
commit | 1c736fdd91ab90225395e2abf75f6e387b95ea04 (patch) | |
tree | 3aef749489e09e9671b96193e46010b8be42b934 | |
parent | 875f0f2e13387f8b7112d43797636ea65e327374 (diff) |
Move starpack rule below the sensible stuff
-rw-r--r-- | Makefile | 16 |
1 files changed, 9 insertions, 7 deletions
@@ -31,13 +31,6 @@ util.a: $(LIB) @$(AR) -r -c $@ $(LIB) @ranlib $@ -getxbookgui.exe: getxbookgui.tcl - @echo STARPACK $@ - @sdx qwrap getxbookgui.tcl - @sdx unwrap getxbookgui.kit - @sdx wrap $@ -runtime $(W32TCLKIT) - @rm -r getxbookgui.kit getxbookgui.vfs - install: all mkdir -p $(DESTDIR)$(PREFIX)/bin cp -f $(BIN) $(GUI) $(DESTDIR)$(PREFIX)/bin @@ -59,6 +52,15 @@ dist: rm -rf $(NAME)-$(VERSION) echo $(NAME)-$(VERSION).tar.bz2 $(NAME)-$(VERSION).tar.bz2.sig +getxbookgui.exe: getxbookgui.tcl + @echo STARPACK $@ + @sdx qwrap getxbookgui.tcl + @sdx unwrap getxbookgui.kit + @sdx wrap $@ -runtime $(W32TCLKIT) + @rm -r getxbookgui.kit getxbookgui.vfs + +# TODO: create rule to make osx starpack of gui + # needs to be run from a mingw setup dist-win: $(BIN) $(GUI:.tcl=.exe) mkdir -p $(NAME)-win |