# -*-Makefile-*-
# access to the X Athena Widgets for Sather
# (c) 1995/01/16 - 1995/01/19 by Erik Schnetter

CC=gcc
CFLAGS=-g -O2 -I $(SATHER_HOME)
RANLIB=ranlib

TARGET=xawlib.a
OBJECTS=widget_class.o

all::	$(TARGET)($(OBJECTS))

all::
	$(RANLIB) $(TARGET)

clean:
	$(RM) $(OBJECTS) $(TARGET)
