Changeset 180 for trunk/sm/Makefile.am
- Timestamp:
- 28/04/07 23:56:58 (19 months ago)
- Files:
-
- 1 modified
-
trunk/sm/Makefile.am (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/sm/Makefile.am
r175 r180 1 INCLUDES = -DCONFIG_DIR=\"$(sysconfdir)\" \ 2 -DLIBRARY_DIR=\"$(pkglibdir)\" \ 3 $(MYSQL_CFLAGS) 4 $(PGSQL_CFLAGS) 1 bin_PROGRAMS = sm 5 2 6 bin_PROGRAMS = sm7 3 pkglib_LTLIBRARIES = mod_active.la \ 8 4 mod_announce.la \ … … 29 25 30 26 noinst_HEADERS = sm.h 27 31 28 sm_SOURCES = aci.c \ 32 29 dispatch.c \ … … 40 37 sm.c \ 41 38 user.c \ 42 storage.c \ 43 storage_db.c \ 44 storage_fs.c \ 45 storage_oracle.c 39 storage.c 46 40 41 sm_CPPFLAGS = -DCONFIG_DIR=\"$(sysconfdir)\" -DLIBRARY_DIR=\"$(pkglibdir)\" 47 42 sm_LDFLAGS = -Wl,-export-dynamic 48 43 sm_LDADD = $(top_builddir)/sx/libsx.la \ 49 44 $(top_builddir)/mio/libmio.la \ 50 45 $(top_builddir)/util/libutil.la \ 51 $(top_builddir)/subst/libsubst.la \ 52 $(MYSQL_LIBS) \ 53 $(PGSQL_LIBS) \ 54 $(SQLITE_LIBS) 55 56 if STORAGE_MYSQL 57 sm_SOURCES += storage_mysql.c 58 endif 59 60 if STORAGE_PGSQL 61 sm_SOURCES += storage_pgsql.c 62 endif 63 64 if STORAGE_SQLITE 65 sm_SOURCES += storage_sqlite.c 66 endif 46 $(top_builddir)/subst/libsubst.la 67 47 68 48 mod_active_la_SOURCES = mod_active.c
