Changeset 120 for trunk/confman/Makefile
- Timestamp:
- 12/04/2006 01:32:20 (5 years ago)
- File:
-
- 1 edited
-
trunk/confman/Makefile (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/confman/Makefile
r119 r120 2 2 PREFIX := $(PREFIX)/rescomp 3 3 4 DIRFLAGS = -d -o root -g wheel -m 0555 5 EXFLAGS = -Sp -o root -g wheel -m 0555 6 INFLAGS = -Sp -o root -g wheel -m 0444 7 8 BINFILES = abspath 9 SBINFILES = confman 10 LIBEXECFILES = export.sh confsync.sh 11 LIBFILES = confmanlib.sh confmandoc.sh 12 ENVFILES = confman_completions 13 DIRECTORIES = /etc /etc/env.d /lib /sbin /bin /libexec 14 4 15 install : 5 mkdir -p $(PREFIX)/etc/env.d 6 mkdir -p $(PREFIX)/lib 7 mkdir -p $(PREFIX)/sbin 8 mkdir -p $(PREFIX)/bin 16 .for dir in $(DIRECTORIES) 17 install $(DIRFLAGS) ${dir} 18 .endfor 19 .for file in $(BINFILES) 20 install $(EXFLAGS) ${file} $(PREFIX)/bin/ 21 .endfor 22 .for file in $(SBINFILES) 23 install $(EXFLAGS) ${file} $(PREFIX)/sbin/ 24 .endfor 25 for file in $(LIBEXECFILES) 26 install $(EXFLAGS) ${file} $(PREFIX)/libexec/ 27 .endfor 28 for file in $(LIBFILES) 29 install $(INFLAGS) ${file} $(PREFIX)/lib/ 30 .endfor 31 .for file in $(ENVFILES) 32 install $(INFLAGS) ${file} $(PREFIX)/etc/env.d/ 33 .endfor 34 install -Sp -o root -g wheel -m 0444 confman.conf \ 35 $(PREFIX)/etc/confman.conf-default 9 36 install -Sp -o soluzer -g wheel -m 0444 confmanrc \ 10 37 /var/home/soluzer/.confmanrc 11 install -Sp -o root -g wheel -m 0555 confman $(PREFIX)/sbin/confman12 install -Sp -o root -g wheel -m 0555 abspath $(PREFIX)/bin/abspath13 install -Sp -o root -g wheel -m 0444 confman.conf \14 $(PREFIX)/etc/confman.conf-default15 install -Sp -o root -g wheel -m 0444 confmanlib.sh \16 $(PREFIX)/lib/confmanlib.sh17 install -Sp -o root -g wheel -m 0444 confmandoc.sh \18 $(PREFIX)/lib/confmandoc.sh19 install -Sp -o root -g wheel -m 0444 bash_completions \20 $(PREFIX)/etc/env.d/confman_completions21 38 22 39 fetch:
Note: See TracChangeset
for help on using the changeset viewer.
