diff options
| author | Daniel Drake <dsd@gentoo.org> | 2007-11-28 13:48:45 +0000 |
|---|---|---|
| committer | Daniel Drake <dsd@gentoo.org> | 2007-12-02 22:54:59 +0000 |
| commit | 852bba4754ec57679c823f33e8feba6e4a564cbe (patch) | |
| tree | cd0a73c5437d1e05799b7bbef047854afdc9939a /Makefile.am | |
| download | android_external_libusbx-852bba4754ec57679c823f33e8feba6e4a564cbe.tar.gz android_external_libusbx-852bba4754ec57679c823f33e8feba6e4a564cbe.tar.bz2 android_external_libusbx-852bba4754ec57679c823f33e8feba6e4a564cbe.zip | |
Initial commit
Basic library structure which supports enumerating detected USB devices
Diffstat (limited to 'Makefile.am')
| -rw-r--r-- | Makefile.am | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/Makefile.am b/Makefile.am new file mode 100644 index 0000000..870224a --- /dev/null +++ b/Makefile.am @@ -0,0 +1,21 @@ +AUTOMAKE_OPTIONS = dist-bzip2 +DISTCLEANFILES = ChangeLog fpusb.pc +EXTRA_DIST = TODO +SUBDIRS = libfpusb + +if BUILD_EXAMPLES +SUBDIRS += examples +endif + +pkgconfigdir=$(libdir)/pkgconfig +pkgconfig_DATA=fpusb.pc + +.PHONY: ChangeLog dist-up +ChangeLog: + git --git-dir $(top_srcdir)/.git log > ChangeLog || touch ChangeLog + +dist-hook: ChangeLog + +dist-up: dist + ncftpput upload.sourceforge.net incoming $(distdir).tar.bz2 + |
