diff options
author | Bill Nottingham <notting@redhat.com> | 2003-09-10 02:29:19 +0000 |
---|---|---|
committer | Bill Nottingham <notting@redhat.com> | 2003-09-10 02:29:19 +0000 |
commit | 1649de1d1cb193c160c8cc9d634753db2648dbf7 (patch) | |
tree | e5a768bf3c478ae85c1fb0bf13b6fd4f40f40b38 /src/Makefile | |
parent | d28947758e5836a8acf5b31c2f295e0efa435a8d (diff) | |
download | initscripts-1649de1d1cb193c160c8cc9d634753db2648dbf7.tar initscripts-1649de1d1cb193c160c8cc9d634753db2648dbf7.tar.gz initscripts-1649de1d1cb193c160c8cc9d634753db2648dbf7.tar.bz2 initscripts-1649de1d1cb193c160c8cc9d634753db2648dbf7.tar.xz initscripts-1649de1d1cb193c160c8cc9d634753db2648dbf7.zip |
add uli's hostid setting program
Diffstat (limited to 'src/Makefile')
-rw-r--r-- | src/Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/Makefile b/src/Makefile index 71491075..1c155765 100644 --- a/src/Makefile +++ b/src/Makefile @@ -1,7 +1,7 @@ CFLAGS+=$(RPM_OPT_FLAGS) -Wall -D_GNU_SOURCE PROGS=usernetctl doexec netreport testd usleep ipcalc initlog minilogd \ - getkey ppp-watch consoletype + getkey ppp-watch consoletype genhostid PPPWATCH_OBJS=ppp-watch.o shvar.o INITLOG_OBJS=initlog.o process.o USLEEP_OBJS=usleep.o @@ -20,12 +20,14 @@ install: install -m 4755 usernetctl $(ROOT)/usr/sbin/usernetctl install -m 2755 netreport $(ROOT)/sbin/netreport install -m 755 ipcalc $(ROOT)/bin/ipcalc + install -m 755 genhostid $(ROOT)/sbin/genhostid install -m 755 initlog $(ROOT)/sbin/initlog install -m 755 minilogd $(ROOT)/sbin/minilogd install -m 755 getkey $(ROOT)/sbin/getkey install -m 755 ppp-watch $(ROOT)/sbin/ppp-watch install -m 755 consoletype $(ROOT)/sbin/consoletype install -m 644 initlog.1 $(ROOT)$(mandir)/man1 + install -m 644 genhostid.1 $(ROOT)$(mandir)/man1 install -m 644 doexec.1 $(ROOT)$(mandir)/man1 install -m 644 netreport.1 $(ROOT)$(mandir)/man1 install -m 644 usleep.1 $(ROOT)$(mandir)/man1 |