mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-05 20:50:43 +00:00
ec26083228
the volume settings. doesn't /quite/ work properly yet
33 lines
632 B
Makefile
33 lines
632 B
Makefile
AUTOMAKE_OPTIONS= foreign
|
|
|
|
libdir=$(prefix)/lib/ruamoko
|
|
|
|
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
|
|
|
|
gui_libs=libgui.a
|
|
if BUILD_RUAMOKO
|
|
libs=$(gui_libs)
|
|
else
|
|
libs=
|
|
endif
|
|
|
|
lib_LIBRARIES= $(libs)
|
|
EXTRA_LIBRARIES= $(gui_libs)
|
|
|
|
%.qfo: %.r
|
|
$(QFCC) $(QCFLAGS) $(QCPPFLAGS) -c -o $@ $<
|
|
|
|
%.o: %.r
|
|
$(QFCC) $(QCFLAGS) $(QCPPFLAGS) -c -o $@ $<
|
|
|
|
libgui_a_SOURCES= \
|
|
InputLine.r Point.r Rect.r Size.r Slider.r View.r
|
|
libgui_a_AR= $(PAK) -cf
|
|
|
|
CLEANFILES= *.qfo *.o
|