diff options
author | sanine <sanine.not@pm.me> | 2022-10-01 20:59:36 -0500 |
---|---|---|
committer | sanine <sanine.not@pm.me> | 2022-10-01 20:59:36 -0500 |
commit | c5fc66ee58f2c60f2d226868bb1cf5b91badaf53 (patch) | |
tree | 277dd280daf10bf77013236b8edfa5f88708c7e0 /libs/ode-0.16.1/Makefile.am | |
parent | 1cf9cc3408af7008451f9133fb95af66a9697d15 (diff) |
add ode
Diffstat (limited to 'libs/ode-0.16.1/Makefile.am')
-rw-r--r-- | libs/ode-0.16.1/Makefile.am | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/libs/ode-0.16.1/Makefile.am b/libs/ode-0.16.1/Makefile.am new file mode 100644 index 0000000..c786f5c --- /dev/null +++ b/libs/ode-0.16.1/Makefile.am @@ -0,0 +1,48 @@ +AUTOMAKE_OPTIONS = foreign +ACLOCAL_AMFLAGS = -I m4 --install + +if ENABLE_OU +OU_DIR = ou +endif + +if LIBCCD +if LIBCCD_INTERNAL +LIBCCD_DIR = libccd +endif +endif + +if ENABLE_DEMOS +DRAWSTUFF_DIR = drawstuff +endif + +if GIMPACT +GIMPACT_DIR = GIMPACT +endif + +if OPCODE +OPCODE_DIR = OPCODE +endif + +SUBDIRS = include \ + $(DRAWSTUFF_DIR) \ + $(GIMPACT_DIR) \ + $(OPCODE_DIR) \ + $(OU_DIR) \ + $(LIBCCD_DIR) \ + ode \ + tests + +bin_SCRIPTS = ode-config + +# Utility rule for making a release +release: dist-gzip dist-bzip2 + @echo Created release packages for ${PACKAGE}-${VERSION}. + +EXTRA_DIST = bootstrap build tools \ + CHANGELOG.txt COPYING INSTALL.txt CSR.txt README.md \ + LICENSE.TXT LICENSE-BSD.TXT \ + bindings \ + CMakeLists.txt ode-config.cmake.in config.h.cmake.in cmake + +pkgconfigdir = $(libdir)/pkgconfig +pkgconfig_DATA = ode.pc |