home *** CD-ROM | disk | FTP | other *** search
Makefile | 1997-03-03 | 1.0 KB | 59 lines |
- #
- # Makefile of OSF/1
- #
- # $Id: Makefile.osf,v 1.4 1997/03/03 08:23:03 sob Exp $
- #
- #
- CC = cc
- AR = ar cq
- RANLIB = ranlib
- LIBC = /lib/libc.a
- IFLAGS =
- LFLAGS =
- CFLAGS = -O ${IFLAGS} ${LFLAGS}
-
- SRCS = getusershell.o fnmatch.c strcasestr.c strerror.c \
- strsep.c authuser.c snprintf.c
- OBJS = getusershell.o fnmatch.o strcasestr.o strerror.o \
- strsep.o authuser.o snprintf.o
-
- all: $(OBJS)
- -rm -f libsupport.a
- ${AR} libsupport.a $(OBJS)
- ${RANLIB} libsupport.a
-
- clean:
- -rm -f *.o libsupport.a
-
- ftp.h:
- install -c -m 444 ftp.h /usr/include/arpa
-
- fnmatch.o: fnmatch.c
- ${CC} ${CFLAGS} -c fnmatch.c
-
- getusershell.o: getusershell.c
- ${CC} ${CFLAGS} -c getusershell.c
-
- strerror.o: strerror.c
- ${CC} ${CFLAGS} -c strerror.c
-
- strdup.o: strdup.c
- ${CC} ${CFLAGS} -c strdup.c
-
- strcasestr.o: strcasestr.c
- ${CC} ${CFLAGS} -c strcasestr.c
-
- strsep.o: strsep.c
- ${CC} ${CFLAGS} -c strsep.c
-
- authuser.o: authuser.c
- ${CC} ${CFLAGS} -c authuser.c
-
- ftw.o: ftw.c
- ${CC} ${CFLAGS} -c ftw.c
-
- snprintf.o: snprintf.c
- ${CC} ${CFLAGS} -c snprintf.c
-
-
-