diff options
| author | Michael R Sweet <michael.r.sweet@gmail.com> | 2002-01-06 13:40:32 +0000 |
|---|---|---|
| committer | Michael R Sweet <michael.r.sweet@gmail.com> | 2002-01-06 13:40:32 +0000 |
| commit | 2d6a98560e1f3f027180be34cfc625eabfb32f05 (patch) | |
| tree | a48208d7420cfcdf1f8fa614b9fa66c8002163a0 /Makefile | |
| parent | de9f6763537e7152279a4f5a19a70437e7a70940 (diff) | |
Doco and dist file updates.
Add fltk-config man page.
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@1911 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 20 |
1 files changed, 14 insertions, 6 deletions
@@ -1,5 +1,5 @@ # -# "$Id: Makefile,v 1.12.2.6.2.9 2002/01/01 15:11:27 easysw Exp $" +# "$Id: Makefile,v 1.12.2.6.2.10 2002/01/06 13:40:27 easysw Exp $" # # Top-level makefile for the Fast Light Tool Kit (FLTK). # @@ -26,7 +26,7 @@ include makeinclude SHELL = /bin/sh -DIRS = src fluid test +DIRS = src fluid test documentation all: makeinclude @for dir in $(DIRS); do\ @@ -35,17 +35,17 @@ all: makeinclude done install: makeinclude - @for dir in FL $(DIRS) documentation; do\ + @for dir in FL $(DIRS); do\ echo "=== installing $$dir ===";\ (cd $$dir; $(MAKE) $(MFLAGS) install) || break;\ done -mkdir -p $(bindir) rm -f $(bindir)/fltk-config -cp fltk-config $(bindir) - -chmod +x $(bindir)/fltk-config + -chmod 755 $(bindir)/fltk-config uninstall: makeinclude - @for dir in FL $(DIRS) documentation; do\ + @for dir in FL $(DIRS); do\ echo "=== uninstalling $$dir ===";\ (cd $$dir; $(MAKE) $(MFLAGS) uninstall) || break;\ done @@ -74,10 +74,18 @@ makeinclude: configure configh.in makeinclude.in else \ ./configure; \ fi + touch config.h configure: configure.in autoconf +portable-dist: + epm -v fltk + +native-dist: + epm -v -f native fltk + + # -# End of "$Id: Makefile,v 1.12.2.6.2.9 2002/01/01 15:11:27 easysw Exp $". +# End of "$Id: Makefile,v 1.12.2.6.2.10 2002/01/06 13:40:27 easysw Exp $". # |
