diff options
author | Peter Hutterer <peter.hutterer@who-t.net> | 2009-04-22 13:26:40 +1000 |
---|---|---|
committer | Peter Hutterer <peter.hutterer@who-t.net> | 2009-04-28 16:03:56 +1000 |
commit | c2c515ead38d9a6c9eae0b83aa7a82208f177b7e (patch) | |
tree | 4bc6afcb2f10170282942dbbb0fd98055c865a72 /dix/Makefile.am | |
parent | 48573e7ea13e279593249036e6d30f1d7507882f (diff) |
dix: remove all but main() from main.c
All other functions are pushed into where they seemed to fit.
main.c is now linked separately into libmain.a and linked in by the various
DDXs.
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
Diffstat (limited to 'dix/Makefile.am')
-rw-r--r-- | dix/Makefile.am | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/dix/Makefile.am b/dix/Makefile.am index 83b8c62c2..ab702f790 100644 --- a/dix/Makefile.am +++ b/dix/Makefile.am @@ -1,7 +1,10 @@ -noinst_LTLIBRARIES = libdix.la +noinst_LTLIBRARIES = libdix.la libmain.la AM_CFLAGS = $(DIX_CFLAGS) +libmain_la_SOURCES = \ + main.c + libdix_la_SOURCES = \ atom.c \ colormap.c \ @@ -26,7 +29,6 @@ libdix_la_SOURCES = \ grabs.c \ initatoms.c \ inpututils.c \ - main.c \ pixmap.c \ privates.c \ property.c \ |