#
# Makefile for Molecular Force Microscope
#
# SimpleGraphicsLibrary ((C) Chr. Muenkel)
#
# Andreas Linke 1994
#

TARGET=libsgl.a
OBJS=libsgl.o libsgle.o libsgl3d.o libsgl3dsh.o
CFLAGS=$(COPTS) $(XINC)

all: $(TARGET)

$(TARGET): $(OBJS)
	rm -f $@
	$(AR) $(ARFLAGS) $@ $(OBJS)
clean:
	rm -f core *.[oa] $(TARGET)
