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.bdi < prev    next >
Encoding:
Makefile  |  1997-03-03  |  635 b   |  35 lines

  1. #
  2. # Makefile for BSD/OS
  3. # $Id: Makefile.bdi,v 1.2 1997/03/02 09:09:59 sob Exp $
  4. #
  5. CC     = gcc
  6. AR     = ar cq
  7. RANLIB = ranlib
  8. LIBC   = /usr/lib/libc.a
  9. IFLAGS = 
  10. LFLAGS = 
  11. CFLAGS = -O -DDEBUG ${IFLAGS} ${LFLAGS} -DNO_MALLOC_PROTO
  12.  
  13. SRCS   = strcasestr.c authuser.c ftw.c
  14. OBJS   = strcasestr.o authuser.o ftw.o
  15.  
  16. all: $(OBJS)
  17.     -rm -f libsupport.a
  18.     ${AR} libsupport.a $(OBJS)
  19.     ${RANLIB} libsupport.a
  20.  
  21. clean:
  22.     -rm -f *.o libsupport.a
  23.  
  24. ftp.h:
  25.     install -c -m 444 ftp.h /usr/include/arpa
  26.  
  27. strcasestr.o: strcasestr.c
  28.     ${CC} ${CFLAGS} -c strcasestr.c
  29.  
  30. authuser.o: authuser.c
  31.     ${CC} ${CFLAGS} -c authuser.c
  32.  
  33. ftw.o: ftw.c
  34.     ${CC} ${CFLAGS} -c ftw.c
  35.