dxx-rebirth/texmap/makefile

25 lines
402 B
Makefile
Raw Normal View History

2006-03-20 16:43:15 +00:00
TOPDIR = ..
include $(TOPDIR)/makefile.config
OBJECTS = \
ntmap.$(OBJ) \
scanline.$(OBJ)
ifdef OGL
NO_ASM = 1
else
OBJECTS += tmapflat.$(OBJ)
ifndef NO_ASM
OBJECTS += \
tmap_ll.$(OBJ) tmap_flt.$(OBJ) tmapfade.$(OBJ) tmap_lin.$(OBJ)
OBJECTS+=tmapppro.$(OBJ)
OBJECTS+=tmappent.$(OBJ)
OBJECTS+=tmap_per.$(OBJ)
endif
endif
2006-04-03 17:32:39 +00:00
OUTPUT = $(LIBDIR)/texmap.$(LIB)
2006-03-20 16:43:15 +00:00
include $(TOPDIR)/makefile.lib