mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-06 05:01:26 +00:00
dfbbda37af
Stupid little lump tool, converts from lmp to pcx and back. qflmp -h for help.
26 lines
388 B
Makefile
26 lines
388 B
Makefile
AUTOMAKE_OPTIONS= foreign
|
|
|
|
QFLMP_LIBS=@QFLMP_LIBS@
|
|
QFLMP_DEPS=@QFLMP_DEPS@
|
|
QFLMP_INCS=@QFLMP_INCS@
|
|
|
|
INCLUDES= -I$(top_srcdir)/include $(QFLMP_INCS)
|
|
|
|
if BUILD_QFLMP
|
|
qflmp=qflmp
|
|
#mans=qflmp.1
|
|
else
|
|
wad=
|
|
#mans=
|
|
endif
|
|
|
|
bin_PROGRAMS= $(qflmp)
|
|
EXTRA_PROGRAMS= qflmp
|
|
|
|
man_MANS= $(mans)
|
|
|
|
qflmp_SOURCES= lmp.c
|
|
qflmp_LDADD= $(QFLMP_LIBS)
|
|
qflmp_DEPENDENCIES= $(QFLMP_DEPS)
|
|
|
|
EXTRA_DIST= lmp.h #lmp.1
|