mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-10 15:22:04 +00:00
95a06c20b2
On discussion with Despair, share makes more sense than lib as they are really cross-platform (though qfcc itself is not).
27 lines
634 B
Makefile
27 lines
634 B
Makefile
AUTOMAKE_OPTIONS= foreign
|
|
|
|
pkglibdir=$(datarootdir)/qfcc/lib
|
|
|
|
QFCC=$(top_builddir)/tools/qfcc/source/qfcc$(EXEEXT)
|
|
QCFLAGS=-qq -g -Werror -Wall -Wno-integer-divide --no-default-paths
|
|
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
|
|
libs=$(gui_libs)
|
|
|
|
pkglib_LIBRARIES= $(libs)
|
|
EXTRA_LIBRARIES= $(gui_libs)
|
|
|
|
SUFFIXES= .qfo .r .qc
|
|
.r.o:
|
|
$(QFCC) $(QCFLAGS) $(QCPPFLAGS) -c -o $@ $<
|
|
|
|
libgui_a_SOURCES= \
|
|
Group.r InputLine.r Pic.r Point.r Rect.r Size.r Slider.r Text.r View.r
|
|
libgui_a_AR= $(PAK) -cf
|
|
|
|
CLEANFILES= *.qfo *.o
|