1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
|
## Makefile.am -- process this file with automake
lib_LTLIBRARIES = libctk.la
# Turn off -O2 for debugging - no assertions
AM_CFLAGS = -g3 -O2 -DNDEBUG -Wall -I../ @GLIB_CFLAGS@
libctk_la_LDFLAGS = @GLIB_LIBS@\
-larr\
@GPM_LIB@\
-release $(LT_RELEASE)\
-version-info $(LT_CURRENT):$(LT_REVISION):$(LT_AGE)
libctk_la_SOURCES = ctkbin.c ctkbox.c ctkbutton.c ctkcheckbutton.c\
ctkcolor.c ctkcontainer.c ctkdraw.c ctkeditable.c ctkentry.c\
ctkhbox.c ctkio.c ctklabel.c ctklist.c ctkmain.c ctkobject.c\
ctkradiobutton.c ctksignal.c ctksize.c ctkstack.c ctktogglebutton.c\
ctktype.c ctkvbox.c ctkwidget.c ctkwindow.c ctkmisc.c ctkdata.c\
ctkadjustment.c ctkscrolledwindow.c ctkviewport.c ctkspinbutton.c\
ctkclist.c ctknotebook.c ctkoptionmenu.c ctkmenushell.c ctkmenu.c\
ctkitem.c ctkmenuitem.c ctkseparator.c ctkhseparator.c\
ctkvseparator.c ctkprogress.c ctkprogressbar.c ctkframe.c\
ctkrange.c ctkscale.c ctkhscale.c ctkvscale.c ctkcombo.c ctktable.c\
ctktablechild.c ctkutil.c ctklistitem.c ctkassert.c
|