Changeset 2709 for trunk/src/opengl/glu/tess
- Timestamp:
- Feb 10, 2000, 12:40:56 AM (26 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/opengl/glu/tess/makefile
r2689 r2709 1 # $Id: makefile,v 1. 1 2000-02-09 08:47:34 jeroenExp $1 # $Id: makefile,v 1.2 2000-02-09 23:40:51 bird Exp $ 2 2 # 3 3 # PD-Win32 API … … 14 14 !include $(PDWIN32_INCLUDE)/pdwin32.mk 15 15 16 CINCLUDE=-I.. -I..\..\mesa 16 CINCLUDE=-I.. -I..\..\mesa -I$(PDWIN32_INCLUDE) -I..\include 17 17 CDEFS=-DNDEBUG -Tdp 18 18 19 CFLAGS = $(CFLAGS) $(CINCLUDE) -I$(PDWIN32_INCLUDE) $(CDEFS) -I..\include-DNDEBUG20 CXXFLAGS = $(CXXFLAGS) $(CINCLUDE) - I$(PDWIN32_INCLUDE) -$(CDEFS) -I..\include-DNDEBUG19 CFLAGS = $(CFLAGS) $(CINCLUDE) $(CDEFS) -DNDEBUG 20 CXXFLAGS = $(CXXFLAGS) $(CINCLUDE) -$(CDEFS) -DNDEBUG 21 21 22 22 OBJS= dict.obj memalloc.obj mesh.obj normal.obj priorityq.obj \ … … 25 25 all: $(OBJS) 26 26 27 # 28 # Dependencies 29 # 30 dict.obj: dict.c dict-list.h memalloc.h 31 memalloc.obj: memalloc.c memalloc.h 32 mesh.obj: mesh.c mesh.h memalloc.h 33 normal.obj: normal.c mesh.h tess.h normal.h 34 priorityq.obj: priorityq.c memalloc.c priorityq-heap.h priorityq-sort.h 35 render.obj: render.c mesh.h tess.h render.h 36 sweep.obj: sweep.c mesh.h geom.h tess.h dict.h priorityq.h memalloc.h sweep.h 37 tess.obj: tess.c memalloc.c tess.h mesh.h normal.h sweep.h tessmono.h render.h 38 tessmono.obj: tessmono.c geom.h mesh.h tessmono.h 39 geom.obj: geom.c mesh.h geom.h 27 28 dep: 29 $(DEPEND) $(CINCLUDE) *.c *.cpp *.h *.asm *.inc \ 30 ..\..\mesa\*.h ..\*.h ..\include\*.h 31 32 !ifndef NODEP 33 !include .depend 34 !endif 35 40 36 41 37 clean:
Note:
See TracChangeset
for help on using the changeset viewer.