CC = cc 
DEBUG = -O2
#if HP
CFLAGS = -Aa -D_HPUX_SOURCE $(DEBUG) -I/usr/include -I/usr/include/Motif1.2 
#else
CFLAGS = $(DEBUG)
#endif

all: library

library: TimerTools.o
	ar ruv libutil.a TimerTools.o

clobber:
	rm -f *.o *~* *.a 
	rm -f $(TARGETS)

