Merge "rename systemsetting.admin public priv for 4 keys" into tizen
[platform/core/appfw/vconf-internal-keys.git] / Makefile
index 6e4fdd5..9837361 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -2,11 +2,13 @@
 #all:init allcmd allheader allhtml vconf-internal-keys.pc
 #all:init allcmd allheader allhtml allwrapper
 #all:init allcmd allhtml allheader allwrapper allwrapper_impl vconf-internal-keys.h endproc
-all:init allcmd postproc allhtml allheader vconf-internal-keys.h endproc
+#all:init allcmd postproc allhtml allheader vconf-internal-keys.h endproc
+all:init allcmd allhtml allheader vconf-internal-keys.h endproc
 
-allcmd: $(shell find . -name "*.xml" | sed 's/xml/sh/')
-allheader: $(shell find . -name "*.xml" | sed 's/xml/h/')
-allhtml: $(shell find . -name "*.xml" | sed 's/xml/html/')
+allcmd: $(shell find . -name "*.xml" | sort | sed 's/xml/sh/')
+#allcmd2: $(shell find . -name "*.xml" | sed 's/xml/sh2/')
+allheader: $(shell find . -name "*.xml" | sort | sed 's/xml/h/')
+allhtml: $(shell find . -name "*.xml" | sort | sed 's/xml/html/')
 #allwrapper: $(shell find . -name "*.xml" | sed 's/.xml/_wrapper.h/')
 #allwrapper_impl: $(shell find . -name "*.xml" | sed 's/.xml/_wrapper.c/')
 
@@ -15,58 +17,55 @@ XMLS=$(wildcard data/*.xml)
 
 check:
        echo $(XMLS)
-       $(foreach var, $(XMLS), xmllint --noout --schema check.xsd $(var);)
+       $(foreach var, $(XMLS), xmllint --noout --schema check.xsd $(var) || exit;)
 
+ifneq ($(model), )
+xsltopt=--stringparam target $(MODEL)
+else
+xsltopt=--stringparam target ''
+endif
 init:
        @mkdir -p report
        @mkdir -p scripts
        @mkdir -p include
-#      @rm scripts/*.sh
-#      @rm scripts/all.sh
-#      @rm scripts/product.sh
-#      @rm scripts/default.sh
+       @find scripts -name "*.sh" -exec rm {} \;
+       @find data -name "*.sh" -exec rm {} \;
+
+#      if [ -a ./scripts/all.sh ]; \
+#      then \
+#              rm ./scripts/all.sh; \
+#      fi;
+       cp all.sh.in ./scripts/all.sh
 
 %.html:%.xml
-       xsltproc test_report.xsl $< > $@
+       xsltproc $(xsltopt) test_report.xsl $< > $@
        mv $@ ./report
 
 %.sh:%.xml
-       xsltproc create_cmd.xsl $< | sed '/^$$/d' > $@
+       xsltproc $(xsltopt) create_cmd.xsl $< | sed '/^$$/d' > $@
        cat $@ >> ./scripts/all.sh
        rm $@
+       xsltproc $(xsltopt) create_init_script.xsl $< | sed '/^$$/d' > $@
+       if [ -s $@ ]; then mv $@ ./scripts; fi
 
-postproc:
-       grep . ./scripts/all.sh | grep "^#default" > scripts/default.sh
-ifneq ($(model), )
 
-       grep . ./scripts/all.sh | grep "^#$$(MODEL)" > scripts/product.sh
-       awk '{ print $$7 }'  ./scripts/product.sh | sed 's/\//\\\//g' > scripts/duplicate.list
-       @while read -r str ; \
-       do \
-               echo "-----------------------------------------------------" $$str; \
-               echo sed --in-place "/$$str/d" ./scripts/default.sh; \
-               sed --in-place "/$$str/d" ./scripts/default.sh; \
-       done < ./scripts/duplicate.list
-       cut -d ' ' -f2- ./scripts/product.sh > temp && mv temp ./scripts/product.sh
-       sed -i '1 i #!/bin/bash' ./scripts/product.sh
-endif
-       cut -d ' ' -f2- ./scripts/default.sh > temp && mv temp ./scripts/default.sh
-       sed -i '1 i #!/bin/bash' ./scripts/default.sh
-       rm ./scripts/all.sh
+#%.sh2:%.xml
+#      xsltproc $(xsltopt) create_init_script.xsl $< | sed '/^$$/d' > $@
+#      if [ -s $@ ]; then mv $@ ./scripts; fi
+
 
 %.h:%.xml
-#      xsltproc create_header.xsl $< | sed '/^$$/d' | indent   > $@
-       xsltproc create_header.xsl $< | sed '/^$$/d' > $@
+       xsltproc $(xsltopt) create_header.xsl $< | sed '/^$$/d' > $@
        mv $@ ./include
 
 #%_wrapper.h:%.xml
-#      xsltproc create_wrapper.xsl $< | sed '/^$$/d' | indent   > $@
-#      xsltproc create_wrapper.xsl $< | sed '/^$$/d'   > $@
+#      xsltproc $(xsltopt) create_wrapper.xsl $< | sed '/^$$/d'  > $@
+#      xsltproc $(xsltopt) create_wrapper.xsl $< | sed '/^$$/d'   > $@
 #      mv $@ ./include
 
 #%_wrapper.c:%.xml
-#      xsltproc create_wrapper.xsl $< | sed '/^$$/d' | indent   > $@
-#      xsltproc create_wrapper_impl.xsl $< | sed '/^$$/d'   > $@
+#      xsltproc $(xsltopt) create_wrapper.xsl $< | sed '/^$$/d' | indent   > $@
+#      xsltproc $(xsltopt) create_wrapper_impl.xsl $< | sed '/^$$/d'   > $@
 #      sed -i '21 i #include \<vconf.h\>' $@
 #      sed -i '22 i #include "vconf-internal-keys.h"' $@
 #      sed -i '23i\\' $@
@@ -81,9 +80,9 @@ vconf-internal-keys.h:
 clean:
        #@rm -rf report scripts include *.pc
        @rm -rf report scripts include
-       @find . -name "*.html" | xargs rm 
-       @find . -name "*.sh" | xargs rm 
-       @find . -name "*.h" | xargs rm 
+       @find . -name "*.html" -print0 | xargs -0 -r rm
+       @rm data/vconf-*.sh
+       @find . -name "*.h" -print0 | xargs -0 -r rm
 
 endproc:
        ./remove_whitespace.sh