libui/build/GNUmakefile.test

27 lines
558 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:28:51 -06:00
# note: OS X's linker complains if we say -rpath= instead of -rpath,
2015-12-13 01:12:13 -06:00
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