diff options
| author | maddaat <git@maddaat.org> | 2026-04-10 18:20:08 +0400 |
|---|---|---|
| committer | maddaat <git@maddaat.org> | 2026-04-10 18:20:08 +0400 |
| commit | 06ec4982b1d3be9582d1be8cc93f7285ca948a05 (patch) | |
| tree | 041bd798c864c5998dfae39af7156b399641afd4 /Makefile.am | |
| download | autotools-project-master.tar autotools-project-master.tar.gz autotools-project-master.tar.bz2 autotools-project-master.tar.lz autotools-project-master.tar.xz autotools-project-master.tar.zst autotools-project-master.zip | |
Diffstat (limited to 'Makefile.am')
| -rw-r--r-- | Makefile.am | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/Makefile.am b/Makefile.am new file mode 100644 index 0000000..9d501b7 --- /dev/null +++ b/Makefile.am @@ -0,0 +1,27 @@ +include $(top_srcdir)/make/shared.am + +ACLOCAL_AMFLAGS = -I m4 --install +EXTRA_DIST = autogen.sh + +SUBDIRS = include +SUBDIRS += . + +if ENABLE_CHECKS +SUBDIRS += tests +endif + +bin_PROGRAMS = foobar +lib_LTLIBRARIES = libfoobar.la +noinst_LIBRARIES = libfoobar.a + +foobar_LDADD = libfoobar.a +foobar_SOURCES = \ + src/main.c + +libfoobar_la_LIBADD = libfoobar.a +libfoobar_la_SOURCES = \ + src/lib.c + +libfoobar_a_SOURCES = \ + src/common.h \ + src/common.c |
