mirror of
https://github.com/gnustep/libs-gdl2.git
synced 2025-02-19 09:40:59 +00:00
* EOAdaptors/SQLiteAdaptor/LoginPanel: New directory. * EOAdaptors/SQLiteAdaptor/LoginPanel/GNUmakefile: New file. * EOAdaptors/SQLiteAdaptor/LoginPanel/Makefile.postamble: Ditto * EOAdaptors/SQLiteAdaptor/LoginPanel/SQLite3LoginPanel.m: Ditto. * EOAdaptors/SQLiteAdaptor/LoginPanel/SQLite3LoginPanel.h: Ditto. * variable-processing.make: Add comments. git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gdl2/trunk@24305 72102866-910b-0410-8b05-ffd578937521
16 lines
609 B
Makefile
16 lines
609 B
Makefile
#
|
|
# Heres a way to compile/link against a framework/library before the library is
|
|
# installed.
|
|
#
|
|
# It depends upon the source layout of GDL2 where the directories are the same
|
|
# name as the framework name, for the -F flag to work.
|
|
#
|
|
# this is only comparable to the -L flags of a normal library, -I flags
|
|
# for this are redundant so just use typical ADDITONAL_INCLUDE_DIRS.
|
|
#
|
|
|
|
ifeq ($(FOUNDATION_LIB), apple)
|
|
ADDITIONAL_LIB_DIRS += $(foreach libdir,$(ADDITIONAL_NATIVE_LIB_DIRS),-F$(libdir))
|
|
else
|
|
ADDITIONAL_LIB_DIRS += $(foreach libdir,$(ADDITIONAL_NATIVE_LIB_DIRS),-L$(libdir)/$(GNUSTEP_OBJ_DIR))
|
|
endif
|