mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-05 20:50:43 +00:00
4ce4869143
how pak gets the filename for the archive. Instead of requiring an -f argument, it now takes the first non-option argument as the filename. If this is a problem, it can be changed back. Also, a manual page.
15 lines
253 B
Makefile
15 lines
253 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 pakfile.c
|
|
pak_LDADD= $(PAK_LIBS)
|
|
pak_DEPENDENCIES= $(PAK_DEPS)
|