libui/GNUmakefile.test

22 lines
392 B
Plaintext
Raw Normal View History

# 16 october 2015
2015-10-17 09:20:31 -05:00
ifndef inlibuibuild
$(error [FAIL] do not run these makefiles directly)
endif
2015-10-16 21:49:54 -05:00
include $(OS)/GNUosspecific.mk
include test/GNUmakeinc.mk
HFILES += \
ui.h
NAME = test
2015-10-16 21:49:54 -05:00
SUFFIX = $(EXESUFFIX)
2015-10-16 21:49:54 -05:00
# TODO what's the difference between doing this and linking to out/libui.so directly?
# LDFLAGS += -L$(OUTDIR) -lui
LDFLAGS += $(OUTDIR)/libui$(LIBSUFFIX)
include GNUbaserules.mk