mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-10 15:22:04 +00:00
91c5283af5
Changing str_free's return type highlighted that I'd missed an edit when I did the big ruamoko build cleanup. Also silence the sed/mv noise now that things are working nicely.
110 lines
3.1 KiB
Makefile
110 lines
3.1 KiB
Makefile
AUTOMAKE_OPTIONS= foreign
|
|
|
|
QWAQ_LIBS=@QWAQ_LIBS@
|
|
QWAQ_DEPS=@QWAQ_DEPS@
|
|
QWAQ_INCS=@QWAQ_INCS@
|
|
|
|
AM_CPPFLAGS= -I$(top_srcdir)/include $(QWAQ_INCS) $(PTHREAD_CFLAGS)
|
|
|
|
noinst_PROGRAMS=@QWAQ_TARGETS@ qwaq-app.dat$(EXEEXT) gcd.dat$(EXEEXT)
|
|
|
|
QFCC_DEP=$(top_builddir)/tools/qfcc/source/qfcc$(EXEEXT)
|
|
QFCC=$(top_builddir)/tools/qfcc/source/qfcc
|
|
|
|
QCFLAGS=-qq -O -g -Werror
|
|
QCPPFLAGS=--no-default-paths -I$(top_srcdir)/ruamoko/include -I$(top_srcdir)/include
|
|
QCLINKFLAGS=--no-default-paths -L$(top_builddir)/ruamoko/lib
|
|
QCOMPILE=$(QFCC) $(QCFLAGS) $(QCPPFLAGS)
|
|
QLINK=$(QFCC) $(QCFLAGS) $(QCLINKFLAGS)
|
|
|
|
SUFFIXES=.o .r
|
|
.r.o:
|
|
$(QCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tqo -c -o $@ $<
|
|
@sed -i -e '1s@:@: $(QFCC_DEP)@' $(DEPDIR)/$*.Tqo
|
|
@$(am__mv) $(DEPDIR)/$*.Tqo $(DEPDIR)/$*.Qo
|
|
|
|
qwaq_app_dat_src= \
|
|
qwaq-app.r \
|
|
qwaq-button.r \
|
|
qwaq-debugger.r \
|
|
qwaq-draw.r \
|
|
qwaq-editbuffer.r \
|
|
qwaq-editor.r \
|
|
qwaq-garray.r \
|
|
qwaq-group.r \
|
|
qwaq-listener.r \
|
|
qwaq-proxyview.r \
|
|
qwaq-rect.r \
|
|
qwaq-screen.r \
|
|
qwaq-textcontext.r \
|
|
qwaq-titlebar.r \
|
|
qwaq-view.r \
|
|
qwaq-window.r
|
|
|
|
#FIXME this coupling is horrible
|
|
qwaq_curses_libs= \
|
|
$(top_builddir)/libs/video/targets/libvid_common.la \
|
|
$(top_builddir)/libs/console/libQFconsole.la \
|
|
$(top_builddir)/libs/gib/libQFgib.la
|
|
qwaq_curses_SOURCES= \
|
|
main.c \
|
|
qwaq-curses.c \
|
|
qwaq-debug.c \
|
|
qwaq-editbuffer-bi.c \
|
|
qwaq-input.c
|
|
qwaq_curses_LDADD= $(qwaq_curses_libs) $(QWAQ_LIBS) \
|
|
$(PANEL_LIBS) $(CURSES_LIBS) $(PTHREAD_LDFLAGS) $(DL_LIBS)
|
|
qwaq_curses_LDFLAGS=
|
|
qwaq_curses_DEPENDENCIES= $(qwaq_curses_libs) $(QWAQ_DEPS)
|
|
|
|
cl_plugin_libs= \
|
|
@client_static_plugin_libs@
|
|
|
|
client_libs= \
|
|
$(top_builddir)/libs/console/libQFconsole.la \
|
|
$(top_builddir)/libs/video/targets/libQFjs.la \
|
|
$(top_builddir)/libs/audio/libQFcd.la \
|
|
$(top_builddir)/libs/audio/libQFsound.la \
|
|
$(top_builddir)/libs/image/libQFimage.la
|
|
|
|
qwaq_x11_libs= \
|
|
$(cl_plugin_libs) \
|
|
$(top_builddir)/libs/video/renderer/libQFrenderer.la \
|
|
$(top_builddir)/libs/models/libQFmodels.la \
|
|
$(top_builddir)/libs/video/targets/libQFx11.la \
|
|
$(client_libs) \
|
|
$(top_builddir)/libs/gib/libQFgib.la
|
|
qwaq_x11_SOURCES=qwaq.c qwaq-bi.c
|
|
qwaq_x11_LDADD= $(qwaq_x11_libs) $(QWAQ_LIBS) \
|
|
$(VIDMODE_LIBS) $(DGA_LIBS) $(X_LIBS) -lX11 \
|
|
$(X_EXTRA_LIBS) $(X_SHM_LIB) $(DL_LIBS)
|
|
qwaq_x11_LDFLAGS=
|
|
qwaq_x11_DEPENDENCIES= $(qwaq_x11_libs) $(QWAQ_DEPS)
|
|
|
|
r_depfiles_remade=
|
|
|
|
qwaq_app_dat_SOURCES=$(qwaq_app_dat_src)
|
|
qwaq_app_obj=$(qwaq_app_dat_SOURCES:.r=.o)
|
|
qwaq_app_dep=$(addprefix ./$(DEPDIR)/,$(qwaq_app_obj:.o=.Qo))
|
|
qwaq-app.dat$(EXEEXT): $(qwaq_app_obj) $(QFCC_DEP)
|
|
$(QLINK) -o $@ $(qwaq_app_obj) -lcsqc -lr
|
|
include $(qwaq_app_dep) # am--include-marker
|
|
r_depfiles_remade += $(qwaq_app_dep)
|
|
|
|
gcd_dat_SOURCES=gcd.r
|
|
gcd_obj=$(gcd_dat_SOURCES:.r=.o)
|
|
gcd_dep=$(addprefix ./$(DEPDIR)/,$(gcd_obj:.o=.Qo))
|
|
gcd.dat$(EXEEXT): $(gcd_obj) $(QFCC_DEP)
|
|
$(QLINK) -o $@ $(gcd_obj) -lcsqc -lr
|
|
include $(gcd_dep) # am--include-marker
|
|
r_depfiles_remade += $(gcd_dep)
|
|
|
|
$(r_depfiles_remade):
|
|
@$(MKDIR_P) $(@D)
|
|
@echo '# dummy' >$@-t && $(am__mv) $@-t $@
|
|
|
|
am--depfiles: $(am__depfiles_remade) $(r_depfiles_remade)
|
|
|
|
EXTRA_PROGRAMS=qwaq-curses qwaq-x11
|
|
EXTRA_DIST=$(qwaq_dat_src) qwaq.h
|
|
CLEANFILES= *.dat *.sym qwaq-curses.log
|