packagekit/backends/apt/Makefile.am
Tom Parker ac4809e980 Separate all of the sqlite caching from apt stuff
The apt backend is now separated into 5 files (vs. 2 before)
- sqlite-pkg-cache.{cc,h}
	Generic sqlite cache searching and initialisation
	Can possibly be folded into the PackageKit core at some
	point in the future.
- apt-build-db.cc
	Apt-specific sqlite cache builder
- pk-backend-apt.{cc,h}
	Everything else
2007-10-10 19:54:53 +02:00

9 lines
434 B
Makefile

plugindir = @PK_PLUGIN_DIR@
plugin_LTLIBRARIES = libpk_backend_apt.la
libpk_backend_apt_la_INCLUDES = $(APT_CFLAGS) $(SQLITE_CFLAGS)
libpk_backend_apt_la_SOURCES = pk-backend-apt.cpp sqlite-pkg-cache.cpp apt-build-db.cpp
libpk_backend_apt_la_LIBADD = @PK_PLUGIN_LIBS@ $(APT_LIBS) $(SQLITE_LIBS)
libpk_backend_apt_la_LDFLAGS = -module -avoid-version
libpk_backend_apt_la_CXXFLAGS = @PK_PLUGIN_CFLAGS@ -DDATABASEDIR=\""$(PK_DB_DIR)"\"