home *** CD-ROM | disk | FTP | other *** search
/ Big Green CD 8 / BGCD_8_Dev.iso / NEXTSTEP / UNIX / Networking / wu-ftpd-2.4.2b13-MIHS / support / makefiles / Makefile.osf < prev    next >
Encoding:
Makefile  |  1997-03-03  |  1.0 KB  |  59 lines

  1. #
  2. # Makefile of OSF/1 
  3. # $Id: Makefile.osf,v 1.4 1997/03/03 08:23:03 sob Exp $
  4. #
  5. #
  6. CC     = cc
  7. AR     = ar cq
  8. RANLIB = ranlib
  9. LIBC   = /lib/libc.a
  10. IFLAGS = 
  11. LFLAGS = 
  12. CFLAGS = -O ${IFLAGS} ${LFLAGS}
  13.  
  14. SRCS   = getusershell.o fnmatch.c strcasestr.c strerror.c \
  15.     strsep.c authuser.c snprintf.c
  16. OBJS   = getusershell.o fnmatch.o strcasestr.o strerror.o \
  17.     strsep.o authuser.o snprintf.o
  18.  
  19. all: $(OBJS)
  20.     -rm -f libsupport.a
  21.     ${AR} libsupport.a $(OBJS)
  22.     ${RANLIB} libsupport.a
  23.  
  24. clean:
  25.     -rm -f *.o libsupport.a
  26.  
  27. ftp.h:
  28.     install -c -m 444 ftp.h /usr/include/arpa
  29.  
  30. fnmatch.o: fnmatch.c
  31.     ${CC} ${CFLAGS} -c fnmatch.c
  32.  
  33. getusershell.o: getusershell.c
  34.     ${CC} ${CFLAGS} -c getusershell.c
  35.  
  36. strerror.o: strerror.c
  37.     ${CC} ${CFLAGS} -c strerror.c
  38.  
  39. strdup.o: strdup.c
  40.     ${CC} ${CFLAGS} -c strdup.c
  41.  
  42. strcasestr.o: strcasestr.c
  43.     ${CC} ${CFLAGS} -c strcasestr.c
  44.  
  45. strsep.o: strsep.c
  46.     ${CC} ${CFLAGS} -c strsep.c
  47.  
  48. authuser.o: authuser.c
  49.     ${CC} ${CFLAGS} -c authuser.c
  50.  
  51. ftw.o: ftw.c
  52.     ${CC} ${CFLAGS} -c ftw.c
  53.  
  54. snprintf.o: snprintf.c
  55.     ${CC} ${CFLAGS} -c snprintf.c
  56.  
  57.  
  58.