# === GNUmakefile =============================================================
# Copyright (c) 1995 Chris Provenzano, proven@mit.edu
#
#	Description: This file is for creating finger
#
#	1.00 95/02/12 proven
#

		  CC = gcc
      CFLAGS = -I../../include -g -O

        CSRC =
		OBJS = finger.o  net.o
      BINARY = finger


################################################################################
#
# Here starts the nitty grity part of the Makefile.

all : $(BINARY)

clean: 
	rm -f a.out core maketmp makeout $(LIBRARIES) $(BINARIES)

%.o: %.c 
	$(CC) $(CFLAGS) -c $< -o $@

$(BINARY): $(OBJS)
	$(CC) $(CFLAGS) -o $(BINARY) $(OBJS) -lpthread
