mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-06 05:01:26 +00:00
acf9ce392c
own code. This also removes the evil pak file count limit :)
17 lines
269 B
Makefile
17 lines
269 B
Makefile
AUTOMAKE_OPTIONS= foreign
|
|
|
|
PAK_LIBS=@PAK_LIBS@
|
|
PAK_DEPS=@PAK_DEPS@
|
|
PAK_INCS=@PAK_INCS@
|
|
|
|
INCLUDES= -I$(top_srcdir)/include $(PAK_INCS)
|
|
|
|
bin_PROGRAMS= pak
|
|
|
|
man_MANS= pak.1
|
|
|
|
pak_SOURCES= pak.c
|
|
pak_LDADD= $(PAK_LIBS)
|
|
pak_DEPENDENCIES= $(PAK_DEPS)
|
|
|
|
EXTRA_DIST= pak.h pak.1
|