roo_e/thirdparty/grx249/pascal/bgi/makefile.x11
2022-05-16 17:59:47 -05:00

57 lines
1.2 KiB
Text

#
# GRX test programs makefile for LINUX/X11.
# Uses GNU make.
#
.SUFFIXES: .exe
.PHONY: clean
GRXVX11=y
include ../../makedefs.grx
# The following line is useful only in this makefile to force recompilation
GRXLIB = ../../lib/$(GRX_LIB_SUBDIR)/libgrx20X.a
# In normal use the library libgrx20X.a or libgrx20X.so is linked in through
# {$L grx20X} contained in the unit graph.pas called by "uses graph".
# The same is valid for other ADDON libraries.
# If the library is NOT installed give its path
# (default when first compiling/testing the library)
GRXLIBPATH = -L../../lib/$(GRX_LIB_SUBDIR)
# When it is installed in a standard system location
# (normal use) this is no more necessary
ifeq ($(SET_XSUIDROOT),y)
EXECBITS = 4755
else
EXECBITS = 0755
endif
ADDON_LIBS=
ifeq ($(USE_XF86DGA_DRIVER),y)
ADDON_LIBS += -lXxf86dga -lXext #NOT included in graph.pas
endif
LIBS= $(GRXLIBPATH) $(ADDON_LIBS)
# Compiler and options on your system
COMPILER = $(PC) --automake
PROGS= \
xallmodes \
xmodelist \
xcolors \
xdemo \
xsmall \
xpalette
all: $(PROGS)
$(PROGS): x% : %.pas $(GRXLIB) graph.pas
$(COMPILER) $(CCOPT) -o $@ $*.pas $(LIBS)
chmod $(EXECBITS) $@
clean:
rm -f *.o *.gpi *.gpm $(PROGS)