From 54e6c07efc83e516254d1a0a30659d12fe5e9398 Mon Sep 17 00:00:00 2001 From: Tomasz Sowa Date: Fri, 22 Jun 2012 23:41:12 +0000 Subject: [PATCH] added: etc directory to Makefile install git-svn-id: svn://ttmath.org/publicrep/winix/trunk@850 e52654a7-88a9-db11-a3e9-0013d4bc506e --- Makefile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Makefile b/Makefile index 13bc091..54a849f 100755 --- a/Makefile +++ b/Makefile @@ -99,6 +99,10 @@ install: all cp winix.so /usr/local/winix/bin # use the full path with winix.so (we have to recompile winix with a new path to winix.so) $(CXX) -o /usr/local/winix/bin/winix $(CXXFLAGS) main/*.o /usr/local/winix/bin/winix.so + # etc configs + mkdir -p /usr/local/winix/etc + cp -rf etc/ /usr/local/winix/etc/ + find /usr/local/winix/etc/ -type d -name ".svn" | xargs -I foo rm -fr foo # html templates mkdir -p /usr/local/winix/html cp -rf html/ /usr/local/winix/html/