lalala makefile
git-svn-id: http://yolanda.mister-muffin.de/svn@298 7eef14d0-6ed0-489d-bf55-20463b2d70db
This commit is contained in:
parent
98ce03d4e4
commit
1b07db81de
1 changed files with 7 additions and 3 deletions
|
@ -1,4 +1,5 @@
|
||||||
INSTDIR=/usr/local
|
INSTDIR=/usr/local
|
||||||
|
PROGNAME=yolanda
|
||||||
|
|
||||||
build: frontend backend
|
build: frontend backend
|
||||||
echo "building"
|
echo "building"
|
||||||
|
@ -18,13 +19,16 @@ frontend: svg2png
|
||||||
# TODO: figure out what should go in here
|
# TODO: figure out what should go in here
|
||||||
|
|
||||||
install: build
|
install: build
|
||||||
-mkdir "${INSTDIR}/share/yolanda"
|
-mkdir "${INSTDIR}/share/${PROGNAME}"
|
||||||
-mkdir "${INSTDIR}/share/yolanda/www"
|
-mkdir "${INSTDIR}/share/${PROGNAME}/www"
|
||||||
|
# only stuff that is necessary should be copied - how to determine what is necessary ?
|
||||||
|
cp * ${INSTDIR}/share/${PROGNAME}/www -R
|
||||||
|
|
||||||
remove:
|
remove:
|
||||||
rm -rf "${INSTDIR}/share/yolanda"
|
rm -rf "${INSTDIR}/share/yolanda"
|
||||||
# TODO: kill off database
|
# TODO: kill off database
|
||||||
|
|
||||||
svg2png:
|
svg2png:
|
||||||
# TODO: figure out how imagemagick works
|
# TODO: figure out how imagemagick works and convert every
|
||||||
|
single SVG
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue