Makefile.am 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. plugindir = $(libdir)/NetworkManager
  2. plugin_LTLIBRARIES = libnm-pptp-properties.la
  3. INCLUDES = -I${top_srcdir}
  4. libnm_pptp_properties_la_SOURCES = \
  5. nm-pptp.c \
  6. nm-pptp.h \
  7. advanced-dialog.c \
  8. advanced-dialog.h \
  9. import-export.c \
  10. import-export.h
  11. uidir = $(datadir)/gnome-vpn-properties/pptp
  12. ui_DATA = nm-pptp-dialog.ui
  13. libnm_pptp_properties_la_CFLAGS = \
  14. $(GLIB_CFLAGS) \
  15. $(GTK_CFLAGS) \
  16. $(NM_CFLAGS) \
  17. $(NMGTK_CFLAGS) \
  18. -I$(top_srcdir)/src \
  19. -DICONDIR=\""$(datadir)/pixmaps"\" \
  20. -DUIDIR=\""$(uidir)"\" \
  21. -DLOCALEDIR=\""$(datadir)/locale"\" \
  22. -DG_DISABLE_DEPRECATED \
  23. -DVERSION=\"$(VERSION)\"
  24. libnm_pptp_properties_la_LIBADD = \
  25. $(GTK_LIBS) \
  26. $(NM_LIBS) \
  27. $(NMGTK_LIBS)
  28. libnm_pptp_properties_la_LDFLAGS = \
  29. -avoid-version
  30. CLEANFILES = *.bak *~
  31. EXTRA_DIST = \
  32. $(ui_DATA)