GLdc/samples/Makefile

25 lines
677 B
Makefile
Raw Normal View History

# Manipulate the CFLAGS to look our *our* version of the library and includes
INC_DIR = $(abspath ../include)
LIB_DIR = $(abspath ../)
export CFLAGS := $(CFLAGS) -I $(INC_DIR)
export OBJEXTRA := $(LIB_DIR)/libGLdc.a
all:
$(KOS_MAKE) -C nehe02 all
$(KOS_MAKE) -C nehe02va all
$(KOS_MAKE) -C nehe02de all
2018-05-29 16:18:01 +00:00
$(KOS_MAKE) -C nehe03 all
$(KOS_MAKE) -C nehe06 all
$(KOS_MAKE) -C nehe06_vq all
2018-06-05 16:16:38 +00:00
$(KOS_MAKE) -C ortho2d all
$(KOS_MAKE) -C lerabot01 all
$(KOS_MAKE) -C zclip all
$(KOS_MAKE) -C zclip_triangle all
2018-07-15 18:48:56 +00:00
$(KOS_MAKE) -C zclip_trianglestrip all
2018-08-01 10:08:39 +00:00
$(KOS_MAKE) -C terrain all
2018-08-02 19:13:45 +00:00
$(KOS_MAKE) -C quadmark all
2018-10-08 21:03:50 +00:00
$(KOS_MAKE) -C trimark all
$(KOS_MAKE) -C multitexture_arrays all