mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-06 05:01:26 +00:00
33 lines
796 B
Makefile
33 lines
796 B
Makefile
AUTOMAKE_OPTIONS= foreign
|
|
|
|
QFCC=$(top_builddir)/tools/qfcc/source/qfcc$(EXEEXT)
|
|
QCFLAGS=-qq -g -Werror
|
|
QCPPFLAGS=$(INCLUDES)
|
|
PAK=$(top_builddir)/tools/pak/pak$(EXEEXT)
|
|
RANLIB=touch
|
|
|
|
INCLUDES= -I$(top_srcdir)/ruamoko/include -I$(top_srcdir)/include
|
|
|
|
noinst_LIBRARIES= libr.a libgui.a libcsqc.a
|
|
|
|
%.qfo: %.r
|
|
$(QFCC) $(QCFLAGS) $(QCPPFLAGS) -c -o $@ $<
|
|
|
|
%.o: %.r
|
|
$(QFCC) $(QCFLAGS) $(QCPPFLAGS) -c -o $@ $<
|
|
|
|
libr_a_SOURCES=\
|
|
crudefile.r debug.r entities.r infokey.r math.r message.r nq_message.r \
|
|
physics.r qw_message.r qw_physics.r qw_sys.r sound.r string.r system.r \
|
|
Object.r Entity.r Point.r Size.r Rect.r
|
|
libr_a_AR=$(PAK) -cf
|
|
|
|
libgui_a_SOURCES=\
|
|
draw.r InputLine.r key.r
|
|
libgui_a_AR=$(PAK) -cf
|
|
|
|
libcsqc_a_SOURCES= \
|
|
cbuf.r cmd.r cvar.r file.r
|
|
libcsqc_a_AR= $(PAK) -cf
|
|
|
|
CLEANFILES= *.qfo
|