SourceDir		= /home/sioux/collab/Source
DestDir			= /home/sioux/collab/Applications

GetOptSourceDir		= $(SourceDir)/GetOpt
BrowseSourceDir		= $(SourceDir)/Browse
NetworkSourceDir	= $(SourceDir)/NetworkProtocol

CC = gcc -traditional
OBJECTS = getopt.o
SOURCES = getopt.c
CFLAGS = -g -c

all:	$(OBJECTS)

install: $(PROGRAM)
	echo "No installation necessary"

clean:
	$(RM) *.o core *~ TAGS 

tags: 
	etags -t *.[ch]


