mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-10 15:22:04 +00:00
19 lines
301 B
Makefile
19 lines
301 B
Makefile
AUTOMAKE_OPTIONS= foreign
|
|
|
|
WAD_LIBS=@WAD_LIBS@
|
|
WAD_DEPS=@WAD_DEPS@
|
|
WAD_INCS=@WAD_INCS@
|
|
|
|
INCLUDES= -I$(top_srcdir)/include $(WAD_INCS)
|
|
|
|
|
|
bin_PROGRAMS= wad
|
|
|
|
mans=wad.1
|
|
man_MANS= $(mans)
|
|
|
|
wad_SOURCES= grab.c script.c wad.c
|
|
wad_LDADD= $(WAD_LIBS)
|
|
wad_DEPENDENCIES= $(WAD_DEPS)
|
|
|
|
EXTRA_DIST= wad.h $(mans)
|