#
#
XAWLIB=Xaw95
# XAWLIB=Xaw
include ../libsx_defs
CFLAGS = -Wall -O2 -D_POSIX_SOURCE -D$(XAWLIB)


OBJS       = xrootbg.o

all : xrootbg

xrootbg : $(OBJS) 
	$(CC) -o $@ $(OBJS) $(LIBS) -lm
	strip xrootbg

xrootbg.o : xrootbg.c

clean:
	rm -f *.o *~ core xrootbg
