1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2026-01-08 03:44:14 +01:00

change directory structure to follow the more standard package hierarchy

This commit is contained in:
Doug Kearns
2007-10-01 10:23:39 +00:00
parent 6b6b6c2c8b
commit 2d60a48fd1
23 changed files with 330 additions and 163 deletions

View File

@@ -6,14 +6,16 @@ VERSION = 0.5.2pre
OS = $(shell uname -s)
BUILD_DATE = $(shell date "+%Y/%m/%d %H:%M:%S")
JAR_FILES = ${shell find chrome/content -type f \
-a ! -path '*CVS*' \
-a \( -path '*.js' \
-o -path '*.css' \
-o -path '*.xul' \
-o -path '*.rdf' \
-o -path '*.png' \
\) } chrome.manifest
JAR_FILES = ${shell find content skin \
-type f \
-a ! -path '*CVS*' \
-a \( \
-path '*.js' \
-o -path '*.css' \
-o -path '*.xul' \
-o -path '*.png' \
\) \
}
JAR_DIRS = $(foreach f,${JAR_FILES},$(dir $f))
JAR = chrome/vimperator.jar
@@ -148,6 +150,7 @@ ${BUILD_JAR_SUBDIRS}:
${JAR}: ${BUILD_JAR_SUBDIRS} ${JAR_FILES}
@echo "Building JAR..."
${Q}mkdir -p $(dir ${JAR}) #FIXME
${Q}for f in ${JAR_FILES} ; do \
${SED} -e "s,###VERSION###,${VERSION},g" \
-e "s,###DATE###,${BUILD_DATE},g" \