quakeforge/tools/bsp2img/Makefile.am
Bill Currie 2a1d8555d2 Import Matthew Wong's bsp2bmp utility using quakeio functions, creating an
image_t type for the line point drawing, ditching the raw and bmp formats
in favor of pcx (for now), and renaming to bsp2img. I plan on working on
getopt, bspfile and other image formats in the future as well as generally
cleaning up the code.
2002-11-18 20:48:29 +00:00

18 lines
334 B
Makefile

BSP2IMG_LIBS=@BSP2IMG_LIBS@
BSP2IMG_DEPS=@BSP2IMG_DEPS@
BSP2IMG_INCS=@BSP2IMG_INCS@
INCLUDES= -I$(top_srcdir)/include $(BSP2IMG_INCS)
if BUILD_BSP2IMG
bsp2img=bsp2img
else
bsp2img=
endif
bin_PROGRAMS=$(bsp2img)
EXTRA_PROGRAMS=bsp2img
bsp2img_SOURCES= bsp2img.c
bsp2img_LDADD= $(BSP2IMG_LIBS)
bsp2img_DEPENDENCIES= $(BSP2IMG_DEPS)