#
#  stuff.a make. stuff.a is a set of common routines
#
#  Include dependencies are NOT HANDLED, so "make clean" after mod.
#  any .h file.

ALLSRC = Makefile ${OBJECTS}

OBJECTS = bmenu.o \
err.o \
getconf.o \
help.o \
initcolr.o \
ncform.o \
popup.o \
prop.o \
title.o \
warpt.o

CFLAGS = -I.. -I../include -I../X11 -I/usr/include -I/usr/include/X11 -g -DGOO

.SUFFIXES: .o .c

stuff.a: ${ALLSRC}
	ar r stuff.a ${OBJECTS}
	ranlib stuff.a

.c.o: Makefile
	cc -c ${CFLAGS} $*.c

clean:
	rm -f *.o

