version 1.2, 2002/05/05 03:35:25
|
version 1.3, 2002/05/23 19:58:49
|
Line 6
|
Line 6
|
DISTPROBE=`perl ./distprobe` |
DISTPROBE=`perl ./distprobe` |
DIST=$(DISTPROBE) |
DIST=$(DISTPROBE) |
CATEGORY="development" |
CATEGORY="development" |
SOURCE=../.. |
SOURCE=.. |
TARGET="" |
TARGET="" |
NORESTORECONF="0" |
NORESTORECONF="0" |
HOSTNAME="" |
HOSTNAME="" |
Line 57 help:
|
Line 57 help:
|
build: |
build: |
@echo "Not yet implemented" |
@echo "Not yet implemented" |
|
|
install: |
install: Makefile.install |
@echo "Not yet implemented" |
@echo -n "" > WARNINGS |
|
make -f Makefile.install SOURCE="$(SOURCE)" TARGET="$(TARGET)" \ |
|
directories |
|
make -f Makefile.install SOURCE="$(SOURCE)" TARGET="$(TARGET)" files |
|
make warningnote |
|
|
|
Makefile.install: Makefile alwaysrun |
|
cat gatewayfiles.lpml | \ |
|
perl lpml_parse.pl install $(CATEGORY) $(DIST) "$(SOURCE)" \ |
|
"$(TARGET)" > Makefile.install |
|
|
|
alwaysrun: |
|
|
test: |
test: |
@echo "Not yet implemented" |
@echo "Not yet implemented" |
Line 87 statuspost:
|
Line 98 statuspost:
|
tardist: |
tardist: |
@echo "Not yet implemented" |
@echo "Not yet implemented" |
|
|
|
warningnote: |
|
@if (test -s WARNINGS); then \ |
|
W=`grep -c '\*\*\*\* WARNING' WARNINGS`; \ |
|
E=`grep -c '\*\*\*\* ERROR' WARNINGS`; \ |
|
N=`grep -c '\*\*\*\* NOTE' WARNINGS`; \ |
|
echo "---> $$W WARNINGS ENCOUNTERED! "; \ |
|
echo "---> $$E ERRORS ENCOUNTERED! "; \ |
|
echo "---> $$N NOTES ENCOUNTERED! "; \ |
|
echo "!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!"; \ |
|
echo "!!!! Please read the WARNINGS file !!!!"; \ |
|
echo "!!!! to make sure everything is !!!!"; \ |
|
echo "!!!! correct and taken care of !!!!"; \ |
|
echo "!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!"; \ |
|
fi |
|
|
clean: |
clean: |
@echo "Not yet implemented" |
@echo "Not yet implemented" |
|
|