9 # Installation path prefix. Unless you know what you're doing, the default
10 # of /usr/local is likely the correct choice.
13 # Unless you are creating a package conforming to some OS's standards, you
14 # probably do not want to modify the following directories:
18 # Configuration .lua files
20 # Some .lua files and ion-* shell scripts
21 SHAREDIR
=$(PREFIX
)/share
/ion3
23 MANDIR
=$(PREFIX
)/share
/man
25 DOCDIR
=$(PREFIX
)/share
/doc
/ion3
26 # Nothing at the moment
27 INCDIR
=$(PREFIX
)/include/ion3
28 # Nothing at the moment
31 MODULEDIR
=$(LIBDIR
)/ion3
/mod
32 # Compiled Lua source code
33 LCDIR
=$(LIBDIR
)/ion3
/lc
34 # ion-completefile (does not belong in SHAREDIR being a binary file)
35 EXTRABINDIR
=$(LIBDIR
)/ion3
/bin
36 # For ion-completeman system-wide cache
37 VARDIR
=/var
/cache
/ion3
39 LOCALEDIR
=$(PREFIX
)/share
/locale
41 # Executable suffix (for Cygwin).
49 # Set PRELOAD_MODULES=1 if your system does not support dynamically loaded
50 # modules through 'libdl' or has non-standard naming conventions.
51 # You will likely need this option on e.g. Cygwin and Mac OS X.
54 # Flags to link with libdl. Even if PRELOAD_MODULES=1, you may need this
55 # setting (for e.g. Lua, when not instructed by pkg-config).
63 # If you have installed Lua 5.1 from the official tarball without changing
64 # paths, this should do it.
66 LUA_LIBS
= -L
$(LUA_DIR
)/lib
-llua
67 LUA_INCLUDES
= -I
$(LUA_DIR
)/include
68 LUA
=$(LUA_DIR
)/bin
/lua
69 LUAC
=$(LUA_DIR
)/bin
/luac
71 # If you are using the Debian packages, the following settings should be
73 #LUA_LIBS=`pkg-config --libs lua5.1`
74 #LUA_INCLUDES=`pkg-config --cflags lua5.1`
76 #LUAC=/usr/bin/luac5.1
80 ## X libraries, includes and options
86 #X11_PREFIX=/usr/openwin
88 X11_LIBS
=-L
$(X11_PREFIX
)/lib
-lX11
-lXext
89 X11_INCLUDES
=-I
$(X11_PREFIX
)/include
91 # XFree86 libraries up to 4.3.0 have a bug that can cause a segfault.
92 # The following setting should work around that situation.
93 DEFINES
+= -DCF_XFREE86_TEXTPROP_BUG_WORKAROUND
95 # Use the Xutf8 routines (XFree86 extension) instead of the Xmb routines
96 # in an UTF-8 locale. (No, you don't need this in UTF-8 locales, and
97 # most likely don't even want. It's only there because both Xmb and
98 # Xutf8 routines are broken, in different ways.)
99 #DEFINES += -DCF_DE_USE_XUTF8
101 # Remap F11 key to SunF36 and F12 to SunF37? You may want to set this
103 #DEFINES += -DCF_SUN_F1X_REMAP
110 # If you're on an archaic system (such as relatively recent *BSD releases)
111 # without even dummy multibyte/widechar and localisation support, you may
112 # have to uncomment the following line:
113 #DEFINES += -DCF_NO_LOCALE -DCF_NO_GETTEXT
115 # On some other systems you may need to explicitly link against libintl.
116 #EXTRA_LIBS += -lintl
117 # You may also need to give the location of its headers. The following
118 # should work on Mac OS X (which needs the above option as well) with
120 #EXTRA_INCLUDES += -I/opt/local/include
127 # You may uncomment this if you know that your system C libary provides
128 # asprintf and vasprintf. (GNU libc does.) If HAS_SYSTEM_ASPRINTF is not
129 # defined, an implementation provided in libtu/sprintf_2.2/ is used.
130 #HAS_SYSTEM_ASPRINTF=1
132 # The following setting is needed with GNU libc for clock_gettime and the
133 # monotonic clock. Other systems may not need it, or may not provide a
134 # monotonic clock at all (which Ion can live with, and usually detect).
138 #DEFINES += -DCF_NO_GETLOADAVG
142 # If you're using/have gcc, it is unlikely that you need to modify
143 # any of the settings below this line.
145 #####################################################################
154 # Same as '-Wall -pedantic' without '-Wunused' as callbacks often
155 # have unused variables.
156 WARN
= -W
-Wimplicit
-Wreturn-type
-Wswitch
-Wcomment \
157 -Wtrigraphs
-Wformat
-Wchar-subscripts \
158 -Wparentheses
-pedantic
-Wuninitialized
160 CFLAGS
=-Os
$(WARN
) $(DEFINES
) $(INCLUDES
) $(EXTRA_INCLUDES
)
161 LDFLAGS
=$(LIBS
) $(EXTRA_LIBS
)
162 EXPORT_DYNAMIC
=-Xlinker
--export-dynamic
164 # The following options are mainly for development use and can be used
165 # to check that the code seems to conform to some standards. Depending
166 # on the version and vendor of you libc, the options may or may not have
167 # expected results. If you define one of C99_SOURCE or XOPEN_SOURCE, you
168 # may also have to define the other.
172 #POSIX_SOURCE=-D_POSIX_C_SOURCE=200112L
175 #XOPEN_SOURCE=-D_XOPEN_SOURCE -D_XOPEN_SOURCE_EXTENDED
177 #XOPEN_SOURCE=-D__EXTENSIONS__
179 #C99_SOURCE=-std=c99 -DCF_HAS_VA_COPY
181 # The -DCF_HAS_VA_COPY option should allow for some optimisations, and
182 # in some cases simply defining
183 #C99_SOURCE=-DCF_HAS_VA_COPY
184 # might allow for those optimisations to be taken without any special
185 # libc or compiler options.
193 DO_MAKE_DEPEND
=$(CC
) -MM
$(DEFINES
) $(INCLUDES
) $(EXTRA_INCLUDES
)
194 MAKE_DEPEND
=$(DO_MAKE_DEPEND
) $(SOURCES
) > $(DEPEND_FILE
)
210 INSTALL
=sh
$(TOPDIR
)/install-sh
-c