CFLAGS = -O2 -m68030 -m68881

OBJS = CatString3.o SendInfo.o SendText.o wild.o safemalloc.o findIconFile.o \
		 mystrcasecmp.o strncmp.o hostname.o  ReadPacket.o \
		 sleep.o CopyString.o mygetostype.o GetFdWidth.o
PROG = fvwmlib.olb

all: $(PROG)

$(PROG): $(OBJS)
	rm -f $(PROG)
	$(AR) rc $(PROG) $(OBJS)

clean:
	rm -f $(PROG)

realclean:
	rm -f $(PROG) $(OBJS)



