mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-06 05:01:26 +00:00
5e1ce57322
Ruamoko standard library overhaul.
29 lines
929 B
Makefile
29 lines
929 B
Makefile
## Process this file with automake to produce Makefile.in
|
|
AUTOMAKE_OPTIONS= foreign
|
|
|
|
#FIXME should qf data be installed somewhere other than id1 that gets
|
|
#searched after everything else?
|
|
pkgdatadir=@sharepath@/id1
|
|
|
|
QFCC=$(top_builddir)/tools/qfcc/source/qfcc$(EXEEXT)
|
|
QCFLAGS=-qq -g -Werror
|
|
QCPPFLAGS=-I. -I$(srcdir) -I$(top_builddir)/ruamoko/include -I$(top_srcdir)/ruamoko/include
|
|
STRIP=$(shell echo `echo -n $(srcdir)/ | sed -e 's/[^/]//g' | wc -c`)
|
|
|
|
pkgdata_DATA= game.dat
|
|
|
|
game_src= Axe.r GameEntity.r World.r tempent.r
|
|
|
|
%.qfo: %.r
|
|
$(QFCC) $(QCFLAGS) $(QCPPFLAGS) -p $(STRIP) -c -o $@ $<
|
|
|
|
%.qfo: %.qc
|
|
$(QFCC) $(QCFLAGS) $(QCPPFLAGS) -p $(STRIP) -c -o $@ $<
|
|
|
|
game_obj=$(addsuffix .qfo,$(basename $(game_src)))
|
|
|
|
game.dat: $(game_obj) ../lib/libr.a
|
|
$(QFCC) $(QCFLAGS) -p $(STRIP) -o game.dat $(game_obj) -l../lib/libr.a
|
|
|
|
EXTRA_DIST= $(game_src) axe.h gameent.h tempent.h weapon.h world.h
|
|
CLEANFILES= *.dat *.sym *.gz *.qfo
|