home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Frozen Fish 1: Amiga
/
FrozenFish-Apr94.iso
/
bbs
/
alib
/
d9xx
/
d927
/
finger.lha
/
Finger
/
src
/
Makefile
< prev
next >
Wrap
Makefile
|
1993-10-07
|
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)