Changeset 544 for server/common
- Timestamp:
- Dec 30, 2007, 11:17:37 PM (17 years ago)
- Location:
- server/common/oursrc/accountadm
- Files:
-
- 1 added
- 1 deleted
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
server/common/oursrc/accountadm/Makefile.in
r134 r544 1 1 CC = @CC@ 2 CPPFLAGS = @CPPFLAGS@ 2 3 CFLAGS = @CFLAGS@ 3 4 prefix = @prefix@ … … 7 8 sysconfdir = @sysconfdir@ 8 9 9 all-local: signup-scripts-frontend 10 all-local: admof signup-scripts-frontend 11 12 admof: admof.c 13 $(CC) $(CPPFLAGS) $(CFLAGS) $< -L/usr/lib/afs -L/usr/lib64/afs -lprot -lauth -lrxkad -lubik -laudit -lsys -lrx -llwp -lsys -lafsutil -lcom_err -lresolv -lkrb5 -ldes -lkrb4 -o $@ 10 14 11 15 install: … … 18 22 19 23 clean: 20 rm -f signup-scripts-frontend24 rm -f admof signup-scripts-frontend 21 25 22 26 distclean: clean 27 rm -f mbash signup-scripts-backend 23 28 rm -f configure config.* Makefile 24 29 rm -rf auto*.cache -
server/common/oursrc/accountadm/configure.in
r485 r544 15 15 ]) 16 16 17 dnl Needed by admof.in18 19 AC_ARG_WITH(fs,20 [ --with-fs[=PATH] fs is located at PATH],[21 if test "$withval" != "no" -a "$withval" != "yes"; then22 fs_path="$withval"23 fi24 ])25 REQUIRE_PATH(fs)26 27 AC_ARG_WITH(pts,28 [ --with-pts[=PATH] pts is located at PATH],[29 if test "$withval" != "no" -a "$withval" != "yes"; then30 pts_path="$withval"31 fi32 ])33 REQUIRE_PATH(pts)34 35 17 dnl Needed by signup-scripts-backend.in 36 18 37 LOCATE(ls)38 LOCATE(grep)39 LOCATE(sudo)40 LOCATE(useradd)41 LOCATE(groupadd)42 LOCATE(setquota)43 19 LOCATE(hesinfo) 44 20 LOCATE(sort) 45 21 LOCATE(head) 46 22 LOCATE(ldapadd) 23 LOCATE(sudo) 47 24 48 25 dnl Needed by mbash.in … … 51 28 52 29 AC_OUTPUT(Makefile) 53 AC_OUTPUT(admof)54 30 AC_OUTPUT(signup-scripts-backend) 55 31 AC_OUTPUT(mbash) -
server/common/oursrc/accountadm/mrproper
r56 r544 1 1 #!/bin/sh 2 2 3 rm -f signup-scripts-frontend admof signup-scripts-backend 3 rm -f signup-scripts-frontend admof signup-scripts-backend mbash 4 4 rm -f configure config.* Makefile 5 5 rm -rf auto*.cache
Note: See TracChangeset
for help on using the changeset viewer.