diff options
author | jofret | 2007-03-25 19:46:17 +0000 |
---|---|---|
committer | jofret | 2007-03-25 19:46:17 +0000 |
commit | 9cb67100ea3eee60f5ee9c47bfbf6c226de2fb84 (patch) | |
tree | 1a52e40849e87bc3f0c5c2a541c04f915317cf1e /src/elementaryFunctions/asin/Makefile.am | |
parent | b2c19810c0b6a42d5dc3c2f04e3a6ed96171b799 (diff) | |
download | scilab2c-9cb67100ea3eee60f5ee9c47bfbf6c226de2fb84.tar.gz scilab2c-9cb67100ea3eee60f5ee9c47bfbf6c226de2fb84.tar.bz2 scilab2c-9cb67100ea3eee60f5ee9c47bfbf6c226de2fb84.zip |
Autotools
Diffstat (limited to 'src/elementaryFunctions/asin/Makefile.am')
-rw-r--r-- | src/elementaryFunctions/asin/Makefile.am | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/src/elementaryFunctions/asin/Makefile.am b/src/elementaryFunctions/asin/Makefile.am new file mode 100644 index 00000000..6454cd8a --- /dev/null +++ b/src/elementaryFunctions/asin/Makefile.am @@ -0,0 +1,33 @@ +## +## -*- makefile -*- +## +## Makefile +## Made by Bruno JOFRET <bruno.jofret@inria.fr> +## +## Started on Fri Jan 5 10:19:16 2007 jofret +## Last update Sun Mar 25 21:01:56 2007 bruno +## +## Copyright INRIA 2007 +## + +AM_CFLAGS = -I ../../type \ + -I ../includes + +instdir = $(top_builddir)/lib + +inst_LIBRARIES = libAsin.a + +noinst_LIBRARIES = libAsin.a + +libAsin_a_SOURCES = $(HEAD) $(SRC) + +SRC = sasins.c \ + dasins.c \ + casins.c \ + zasins.c \ + sasina.c \ + dasina.c \ + casina.c \ + zasina.c + +HEAD = ../includes/asin.h |