# This Makefile is for use with FileChooser if you don't have imake/xmkmf.

RM = rm -f
AR = ar clq
RANLIB = ranlib

# These should be set in the master Makefile
XINCS = -I/usr/local/include
CDEBUGFLAGS = -g

OBJS = FChooser.o
INCLUDES = -I.
CFLAGS = $(CDEBUGFLAGS) $(INCLUDES) $(XINCS)

libFChooser.a: $(OBJS)
	$(RM) $@
	$(AR) $@ $(OBJS)
	$(RANLIB) $(@)

clean:
	$(RM) libFChooser.a $(OBJS)
