Changeset 87 for server/common
- Timestamp:
- Jan 20, 2007, 8:53:56 PM (18 years ago)
- Location:
- server/common/oursrc
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
server/common/oursrc/accountadm/Makefile.in
r36 r87 2 2 CFLAGS = @CFLAGS@ 3 3 prefix = @prefix@ 4 exec_prefix = @exec_prefix@ 5 sbindir = @sbindir@ 6 bindir = @bindir@ 7 sysconfdir = @sysconfdir@ 4 8 5 9 all-local: signup-scripts-frontend 6 10 7 signup-scripts-frontend: 8 $(CC) $(CFLAGS) -o $@ signup-scripts-frontend.c 11 install: 12 install -p -m755 -D modbashrc $(DESTDIR)$(sysconfdir)/modbashrc 13 install -p -m755 -D modbash $(DESTDIR)$(bindir)/modbash 14 install -p -m755 -D admof $(DESTDIR)$(bindir)/admof 15 install -p -m755 -D signup-scripts-frontend $(DESTDIR)$(sbindir)/signup-scripts-frontend 16 install -p -m755 -D signup-scripts-backend $(DESTDIR)$(sbindir)/signup-scripts-backend 9 17 10 18 clean: 11 19 rm -f signup-scripts-frontend 20 21 distclean: clean 22 rm -f configure config.* Makefile 23 rm -rf auto*.cache -
server/common/oursrc/execsys/Makefile.in
r36 r87 1 1 CC = @CC@ 2 2 CFLAGS = @CFLAGS@ 3 prefix = @prefix@ 4 exec_prefix = @exec_prefix@ 5 libexecdir = @libexecdir@ 6 sysconfdir = @sysconfdir@ 7 APACHEDIR = /etc/httpd 8 SYSCATPATH = /usr/local/sbin 3 9 4 all-local: staticsys-cat update10 all-local: staticsys-cat execsys-binfmt 5 11 6 staticsys-cat : update7 $(CC) $(CFLAGS) -o $@ staticsys-cat.c12 staticsys-cat.c execsys-binfmt: staticsys-cat.c.pre execsys-binfmt.pre 13 @UPD_VARS@ syscat_path=$(SYSCATPATH) perl upd-execsys 8 14 9 update: 10 @UPD_VARS@ perl upd-execsys 15 install: all-local 16 install -D -p -m644 execsys.conf $(DESTDIR)$(APACHEDIR)/conf.d/execsys.conf 17 install -D -p -m755 execsys-binfmt $(DESTDIR)$(sysconfdir)/init.d/execsys-binfmt 18 install -D -p -m755 staticsys-cat $(DESTDIR)$(SYSCATPATH)/staticsys-cat 11 19 12 20 clean: 13 21 rm -f staticsys-cat 22 23 distclean: clean 24 rm -f configure config.* Makefile 25 rm -rf auto*.cache -
server/common/oursrc/execsys/configure.in
r1 r87 2 2 3 3 AC_PROG_CC 4 5 AC_ARG_WITH(syscat,6 [ --with-syscat[=DIR] staticsys-cat will be located in DIR],[7 if test "$withval" != "no" -a "$withval" != "yes"; then8 UPD_VARS="syscat_path=$withval/staticsys-cat $UPD_VARS"9 fi10 ])11 4 12 5 AC_ARG_WITH(afsagent, -
server/common/oursrc/sqladm/Makefile.in
r36 r87 2 2 CFLAGS = @CFLAGS@ 3 3 prefix = @prefix@ 4 exec_prefix = @exec_prefix@ 5 sbindir = @sbindir@ 6 4 7 5 8 all-local: signup-sql 6 9 7 signup-sql:8 $(CC) $(CFLAGS) -o $@ signup-sql.c10 install: 11 install -p -m755 -D signup-sql $(DESTDIR)$(sbindir)/signup-sql 9 12 10 13 clean: 11 14 rm -f signup-sql 15 16 distclean: clean 17 rm -f configure config.* Makefile 18 rm -rf auto*.cache -
server/common/oursrc/tokensys/Makefile.in
r36 r87 1 CC = @CC@2 CFLAGS = @CFLAGS@3 1 prefix = @prefix@ 2 exec_prefix = @exec_prefix@ 3 libdir = @libdir@ 4 5 all: 6 7 install: 8 mkdir -p $(DESTDIR)$(libdir) 9 install -m a=rx,u+w -p renew $(DESTDIR)$(libdir)/ 10 11 clean: 12 rm -f renew 13 14 distclean: clean 15 rm -f configure config.* Makefile 16 rm -rf auto*.cache
Note: See TracChangeset
for help on using the changeset viewer.