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.lnx < prev    next >
Encoding:
Makefile  |  1997-03-03  |  679 b   |  37 lines

  1. #
  2. # Makefile for Linux 1.2.13 with gcc 2.6.3
  3. #
  4. # $Id: Makefile.lnx,v 1.7 1997/03/03 08:23:03 sob Exp $
  5. #
  6. CC     = gcc 
  7. AR     = ar cq
  8. RANLIB = ranlib
  9. LIBC   = /lib/libc.a
  10. IFLAGS = 
  11. LFLAGS = 
  12. CFLAGS = -O2 -fomit-frame-pointer ${IFLAGS} ${LFLAGS}
  13.  
  14. SRCS   = strcasestr.c authuser.c snprintf.c
  15. OBJS   = strcasestr.o authuser.o snprintf.o
  16.  
  17. all: $(OBJS)
  18.     -rm -f libsupport.a
  19.     ${AR} libsupport.a $(OBJS)
  20.     ${RANLIB} libsupport.a
  21.  
  22. clean:
  23.     -rm -f *.o libsupport.a
  24.  
  25. ftp.h:
  26.     install -c -m 444 ftp.h /usr/include/arpa
  27.  
  28. strcasestr.o: strcasestr.c
  29.     ${CC} ${CFLAGS} -c strcasestr.c
  30.  
  31. authuser.o: authuser.c
  32.     ${CC} ${CFLAGS} -c authuser.c
  33.  
  34. snprintf.o: snprintf.c
  35.     ${CC} ${CFLAGS} -c snprintf.c
  36.  
  37.