# # Before making an InterViews application, be sure the following are set: # # setenv CPU SUN4 # path includes /usr/pkg/gnu/bin # OBJECTS = main.o NEWOBJECTS = new-main.o SRCS = main.c IVLIBS = -lX11iv -lX11ivg XLIB = -lX11 OTHERLIBS = -lm CFLAGS = -g CC = g++ LIBS = $(IVLIBS) $(XLIB) $(OTHERLIBS) main: $(OBJS) $(CC) $(OBJS) $(CFLAGS) $(LIBS) -o main newmain: $(OBJS) $(CC) $(OBJS) $(CFLAGS) $(LIBS) -o newmain depend: $(SRCS) makedepend $(SRCS) # DO NOT DELETE THIS LINE -- make depend depends on it. main.o: /usr/include/InterViews/box.h /usr/include/InterViews/scene.h main.o: /usr/include/InterViews/interactor.h /usr/include/InterViews/defs.h main.o: /usr/include/InterViews/tray.h /usr/include/InterViews/shape.h main.o: /usr/include/InterViews/glue.h /usr/include/InterViews/message.h main.o: /usr/include/InterViews/world.h