Last change
on this file since 7134 was
7134,
checked in by westram, 14 years ago
|
- test whether arb_tcp.dat is a link and then dont overwrite contents
(on some systems 'test -e' returns false for links)
|
-
Property svn:eol-style set to
native
-
Property svn:keywords set to
Author Date Id Revision
|
File size:
398 bytes
|
Line | |
---|
1 | help.make: |
---|
2 | @echo 'options' |
---|
3 | @echo ' nameserver create nameserver from template' |
---|
4 | @echo ' tcpdat create arb_tcp.dat from template' |
---|
5 | @echo '' |
---|
6 | @echo ' all all above' |
---|
7 | |
---|
8 | all: tcpdat nameserver |
---|
9 | |
---|
10 | tcpdat: |
---|
11 | (test -e arb_tcp.dat || test -h arb_tcp.dat) \ |
---|
12 | || cp -p arb_tcp_org.dat arb_tcp.dat |
---|
13 | |
---|
14 | nameserver: |
---|
15 | test -L nas && echo "lib/nas is a link - skipped" || \ |
---|
16 | (cd nas;$(MAKE) all) |
---|
17 | |
---|
Note: See
TracBrowser
for help on using the repository browser.