#CC = gcc RANLIB = ranlib RM = rm -f CFLAGS = -g -Wall -I/usr/X11R6/include -I../imagelib -I../locale -DDEBUG LDLIBS = -L/usr/X11R6/lib -lXmu -lXext -lXaw -lXt -lX11 \ -L../imagelib -lanimate -limage \ -L../locale -lwchar LIB = libhtml.a PROG = msgwin PROG2 = msgwin2 PROG3 = msgwin3 OBJS = msgwin.o fonts.o text.o text2.o msgbuf.o \ tag.o taginfo.o optinfo.o entities.o \ obj.o frame.o disp.o parse.o parse2.o parse3.o href.o timer.o \ MsgShell.o msgpack.o \ miniframe.o MsgPop.o $(LIB): $(OBJS) $(AR) $(ARFLAGS) $@ $(OBJS) $(RANLIB) $@ $(PROG): msgtest.o $(OBJS) $(LINK.c) $(CFLAGS) -o $@ msgtest.o $(OBJS) $(LDLIBS) $(PROG2): msgtest2.o $(OBJS) $(LINK.c) $(CFLAGS) -o $@ msgtest2.o $(OBJS) $(LDLIBS) $(PROG3): msgtest3.o $(OBJS) $(LINK.c) $(CFLAGS) -o $@ msgtest3.o $(OBJS) $(LDLIBS) clean: $(RM) $(PROG) $(PROG2) $(LIB) *.o *~