mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-06 13:11:20 +00:00
7b0c24a386
to accommodate it. Added the strict flag to cbufs, which causes an error to be generated when a command is not found instead of just warning the user. GIB buffers have the strict flag set by default.
22 lines
338 B
Makefile
22 lines
338 B
Makefile
AUTOMAKE_OPTIONS= foreign
|
|
|
|
CARNE_LIBS=@CARNE_LIBS@
|
|
CARNE_DEPS=@CARNE_DEPS@
|
|
PAK_INCS=@CARNE_INCS@
|
|
|
|
INCLUDES= -I$(top_srcdir)/include $(CARNE_INCS)
|
|
|
|
if BUILD_CARNE
|
|
carne=carne
|
|
else
|
|
carne=
|
|
endif
|
|
|
|
noinst_PROGRAMS= $(carne)
|
|
EXTRA_PROGRAMS= carne
|
|
|
|
carne_SOURCES= main.c
|
|
carne_LDADD= $(CARNE_LIBS)
|
|
carne_DEPENDENCIES= $(CARNE_DEPS)
|
|
|
|
EXTRA_DIST=
|