#makefile for missing files

include ../config.h

####### Files

SOURCES =	String.cc DLList.cc error.cc Regex.cc GetOpt.cc
OBJECTS =	String.o DLList.o error.o Regex.o GetOpt.o

####### Implicit rules

.SUFFIXES: .cc

.cc.o:
	$(CC) -c $(CFLAGS) $(INCDIR) $(LIBDIR) $<

####### Build rules

all: $(OBJECTS)

#$(OBJECTS): $(SOURCES)
#	$(CC) -c $(SOURCES) $(LFLAGS) -$(CFLAGS) $(LIBDIR) $(INCDIR)

depend:
	@makedepend -I$(INCDIR) $(SOURCES) 2> /dev/null

showfiles:
	@echo $(HEADERS) $(SOURCES) Makefile

clean:
	rm -f *.o *.bak *~ *% *ASV *ESV
	rm -f $(SRCMETA) $(TARGET)


# DO NOT DELETE THIS LINE -- make depend depends on it.
