home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Meeting Pearls 3
/
Meeting_Pearls_III.iso
/
Pearls
/
tcp
/
Networking
/
TCP
/
Clients
/
finger
/
Makefile
< prev
next >
Wrap
Makefile
|
1993-02-27
|
255b
|
17 lines
CC = gcc
PROG = finger
OBJS = finger.o lprint.o net.o sprint.o util.o
CFLAGS = -O2 -include /usr/include/bsd/bsd.h -I/usr/include/bsd
LDFLAGS = -N -s
LDLIBS = -lbsd
all: $(PROG)
$(PROG): $(OBJS)
clean:
rm -f *.o *~ core
clobber: clean
rm -f $(PROG)