X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=tools%2Fhtdocs%2Fexternal%2Fkoha%2FMakefile;fp=tools%2Fhtdocs%2Fexternal%2Fkoha%2FMakefile;h=7bfbbedd10b0e5e10504ea13bec438c983241c52;hb=f951526c9f26c56376ca94a66ffc278392fad8e2;hp=0000000000000000000000000000000000000000;hpb=177aed28e427457745e1277b983bfdbb393a8a4f;p=mkws-moved-to-github.git diff --git a/tools/htdocs/external/koha/Makefile b/tools/htdocs/external/koha/Makefile new file mode 100644 index 0000000..7bfbbed --- /dev/null +++ b/tools/htdocs/external/koha/Makefile @@ -0,0 +1,18 @@ +E_DIR= ../../../../examples/htdocs +COMPONENTS = ${E_DIR}/mkws-widget-reference.css + +KOHA_CSS = koha-mkws.css +KOHA_COMPLETE_CSS = koha-mkws-complete.css + +all: ${KOHA_COMPLETE_CSS} + +clean: + rm -f ${KOHA_COMPLETE_CSS} + +${KOHA_COMPLETE_CSS}: + cat ${COMPONENTS} ${KOHA_CSS} > $@.tmp + mv -f $@.tmp $@ + +distclean: clean + rm -f *.orig *.bak *.rej +