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
This commit is contained in:
Michael R Sweet
1999-02-23 15:37:19 +00:00
parent 1c32b0e995
commit 209f38157b
+6 -2
View File
@@ -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 $".
#