* Updated "make install" to handle the multi static thing
authorArt Cancro <ajc@citadel.org>
Mon, 26 Sep 2005 03:10:10 +0000 (03:10 +0000)
committerArt Cancro <ajc@citadel.org>
Mon, 26 Sep 2005 03:10:10 +0000 (03:10 +0000)
webcit/ChangeLog
webcit/Makefile.in

index 01a24b6f2caf2df0702a69e80a3612bf81d16931..5b2364177f20b4bfbf8553bba6786833e5a624f1 100644 (file)
@@ -1,4 +1,7 @@
 $Log$
+Revision 625.23  2005/09/26 03:10:10  ajc
+* Updated "make install" to handle the multi static thing
+
 Revision 625.22  2005/09/26 02:45:06  ajc
 * Removed the Kevin Roth rich text editor and replaced it with TinyMCE.
 
@@ -3059,3 +3062,4 @@ Sun Dec  6 19:50:55 EST 1998 Art Cancro <ajc@uncnsrd.mt-kisco.ny.us>
 
 1998-12-03 Nathan Bryant <bryant@cs.usm.maine.edu>
        * webserver.c: warning fix
+
index 9c5cbe4de42c98cbce8d7797c2fa4fe0183cf773..7af1c05ed0995520715adcbab5dc11e1d8606da9 100644 (file)
@@ -68,6 +68,15 @@ $(srcdir)/configure: $(srcdir)/configure.in $(srcdir)/aclocal.m4
 install:
        test -d $(root)$(prefix) || mkdir $(root)$(prefix)
        test -d $(root)$(prefix)/static || mkdir $(root)$(prefix)/static
-       for i in webserver setup `find static -type f | grep -v CVS` ; do \
+       for i in `find tiny_mce -type d | grep -v CVS` \
+               ; do \
+               test -d $(root)$(prefix)/$$i || mkdir $(root)$(prefix)/$$i; \
+       done
+       for i in \
+               webserver \
+               setup \
+               `find static -type f | grep -v CVS` \
+               `find tiny_mce -type f | grep -v CVS` \
+               ; do \
                $(INSTALL) $$i $(root)$(prefix)/$$i; \
        done