mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-06 21:20:07 +00:00
2a1d8555d2
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.
18 lines
334 B
Makefile
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)
|