Compare commits

..

No commits in common. "6278f5844e1f735e1e4391a2c9a8c27401f9be1c" and "7515f68a8d8f2f0345c80874b34eeedddd3407da" have entirely different histories.

3 changed files with 1 additions and 8 deletions

View File

@ -21,11 +21,6 @@ install: all
@cp lib/find_cmd.awk ${AWKLIB}
@echo Installation Complete
clean:
@echo Removing zod executable
@rm bin/zod
@echo Done
uninstall:
@echo Uninstalling zod executables
@rm ${PREFIX}/bin/zod

View File

@ -8,7 +8,6 @@ target="$1"; shift
file="$1"; shift
ext="${file##*.}"
meta="${file%.$ext}.meta"
dirmeta="${file%/*}/dir.meta"
page="${file##*/}"
page="${page%.$ext}.html"
destination=$(__zod_destination "$file")
@ -19,7 +18,6 @@ set -- "$@" -f "$zod_lib/config.awk"
set -- "$@" -
[ -f "$proj/global.meta" ] && set -- "$@" "$proj/global.meta"
[ -f "$meta" ] && set -- "$@" "$meta"
[ -f "$dirmeta" ] && set -- "$@" "$dirmeta"
set -- "$@" "$file"
[ -f "$proj/main.layout" ] && set -- "$@" "$proj/main.layout"

View File

@ -1,2 +1,2 @@
PREFIX = /opt/zodiac
PREFIX = /usr/local
AWKLIB = ${PREFIX}/lib/zodiac