home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The Fred Fish Collection 1.5
/
ffcollection-1-5-1992-11.iso
/
ff_disks
/
300-399
/
ff319.lzh
/
CNewsSrc
/
cnews.orig.lzh
/
libbsd42
/
Makefile
< prev
Wrap
Makefile
|
1989-06-27
|
530b
|
31 lines
# C news libbsd42 makefile
INCLUDE = ../include
DEFINES=-I$(INCLUDE)
COPTS=-O # -g -p
CFLAGS=$(COPTS) $(DEFINES)
LINTFLAGS=-hau $(DEFINES)
# workaround for System V make bug
SHELL = /bin/sh
SRCS = clsexec.c fopenexcl.c getcwd.c
OBJS = clsexec.o fopenexcl.o getcwd.o
# RANLIB is ranlib on non-USG systems, echo on USG systems
RANLIB=ranlib
u: $(OBJS)
ar ruv ../libcnews.a $(OBJS)
all: $(OBJS)
libbsd42.a: $(SRCS)
$(CC) $(CFLAGS) -c $?
ar ru $@ *.o
rm *.o
$(RANLIB) $@
lint:
lint $(LINTFLAGS) $(SRCS)
clean:
rm -f *.o