# G. Matthias Ullmann						#
# Berlin, 30.10.1996						#
# 								#
# ------------------------------------------------------------- #
# Flags, Libraries etc.
# path for binaries
#
# ---------------------------------------------
CFLAGS    =   -pedantic -W -Wall
CC = gcc   
# ---------------------------------------------
AR = ar rv 
# ---------------------------------------------
# Source files
#
GMULIB = util.o 
# ---------------------------------------------
# Compilation 
#
all:	libgmu 
libgmu:	$(GMULIB)
	$(AR) libgmu.a $(GMULIB)
clean:	
	rm -f *.o *~ *.a
# ---------------------------------------------
# DO NOT DELETE THIS LINE -- makedepend depends on it.

