libui/build/GNUmakefile.test

28 lines
564 B
Plaintext
Raw Normal View History

2015-12-11 19:04:31 -06:00
# 16 october 2015
ifndef inlibuibuild
$(error Do not run these makefiles directly.)
endif
include $(OS)/GNUosspecific.mk
include test/GNUfiles.mk
HFILES += \
ui.h
NAME = test
SUFFIX = $(EXESUFFIX)
ifeq ($(TOOLCHAIN),gcc)
LDFLAGS += -L$(OUTDIR) -lui
# tell the dynamic loader to search in the executable path for shared objects
2015-12-13 01:12:13 -06:00
# TODO OS X complains if we do -rpath=$ORIGIN
# see if Unix complains too
LDFLAGS += -Wl,-rpath,'$$ORIGIN'
2015-12-11 19:04:31 -06:00
else
# TODO is there an equivalent to -L?
LDFLAGS += $(OUTDIR)/libui.lib
endif
include build/GNUbase$(TOOLCHAIN).mk