diff options
author | Kristian Høgsberg <krh@bitplanet.net> | 2012-03-11 21:05:57 -0400 |
---|---|---|
committer | Kristian Høgsberg <krh@bitplanet.net> | 2012-03-12 01:28:50 -0400 |
commit | bcacef19b032d1162120c4a48412bb62b90ad61c (patch) | |
tree | 07b3ca56da1946d99e79258d4bab9276ef1e05bd /clients/Makefile.am | |
parent | 22ba60e514e074e4bdee1529aa8d22600712f001 (diff) |
Add an option parser
On one hand, getopt (in particular the -o suboption syntax) sucks on the
server side, and on the client side we would like to avoid the glib
dependency. We can roll out own option parser and solve both problems
and save a few lines of code total.
Diffstat (limited to 'clients/Makefile.am')
-rw-r--r-- | clients/Makefile.am | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/clients/Makefile.am b/clients/Makefile.am index d7a6cbf6..eab8939d 100644 --- a/clients/Makefile.am +++ b/clients/Makefile.am @@ -57,8 +57,9 @@ libtoytoolkit_a_SOURCES = \ cairo-util.c \ cairo-util.h -toolkit_libs = \ - libtoytoolkit.a \ +toolkit_libs = \ + libtoytoolkit.a \ + ../shared/libconfig-parser.la \ $(CLIENT_LIBS) $(CAIRO_EGL_LIBS) -lrt -lm flower_SOURCES = flower.c |