diff options
| author | Michael R Sweet <michael.r.sweet@gmail.com> | 1999-02-23 15:37:19 +0000 |
|---|---|---|
| committer | Michael R Sweet <michael.r.sweet@gmail.com> | 1999-02-23 15:37:19 +0000 |
| commit | 209f38157bfc3b3e088097c377e18d830bc11cea (patch) | |
| tree | 928aad8d9ba1621640daa74569099f1e871e0b32 | |
| parent | 1c32b0e995f1ba808aff57393d69adfbe6b0f5c7 (diff) | |
Added shell commands to create symbolic links for all .H header files in
the FL directory. This allows any combination of Fl/FL and .H/.h.
git-svn-id: file:///fltk/svn/fltk/trunk@332 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
| -rw-r--r-- | src/Makefile | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/src/Makefile b/src/Makefile index 8bca82aff..31a48085f 100644 --- a/src/Makefile +++ b/src/Makefile @@ -1,5 +1,5 @@ # -# "$Id: Makefile,v 1.14 1999/02/22 18:05:20 mike Exp $" +# "$Id: Makefile,v 1.15 1999/02/23 15:37:19 mike Exp $" # # Library makefile for the Fast Light Tool Kit (FLTK). # @@ -186,8 +186,12 @@ install: ../lib/$(LIBNAME) -rm -rf $(includedir)/FL $(includedir)/Fl -cp -r ../FL $(includedir) @-chmod -R a+r,u+w,g-w,o-w $(includedir)/FL + for file in $(includedir)/FL/*.H; do\ + newfile="`basename $$file H`h";\ + ln -s $$file $(includedir)/FL/$$newfile;\ + done -ln -s FL $(includedir)/Fl # -# End of "$Id: Makefile,v 1.14 1999/02/22 18:05:20 mike Exp $". +# End of "$Id: Makefile,v 1.15 1999/02/23 15:37:19 mike Exp $". # |
