home *** CD-ROM | disk | FTP | other *** search
Makefile | 1996-11-11 | 441 b | 24 lines |
- #!smake
-
- include $(ROOT)/usr/include/make/commondefs
-
- # debugging option
- LCOPTS = -g
- #OPTIMIZER= -O2
-
- LLDLIBS = -lGLw -lGL -lGLU -lX11 -lXt -lXm -lm
- # override the prototypes macro in commondefs: if you want
- # prototyping turned on, comment out the next line.
- PROTOTYPES=
-
- CFILES = main.c twodwrap.c
-
- TARGETS = ogl2Dwrap
-
- default all: $(TARGETS)
-
- include $(COMMONRULES)
-
- $(TARGETS): $(OBJECTS)
- $(CCF) $(OBJECTS) $(LDFLAGS) -o $(TARGETS)
-