summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.gitignore18
-rw-r--r--Makefile.am4
-rw-r--r--configure.ac9
3 files changed, 31 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..e622b0e
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,18 @@
+*.a
+*.o
+.deps
+Makefile
+Makefile.in
+aclocal.m4
+ar-lib
+autom4te.cache
+compile
+config.h
+config.h.in
+config.log
+config.status
+configure
+depcomp
+install-sh
+missing
+stamp-h1
diff --git a/Makefile.am b/Makefile.am
new file mode 100644
index 0000000..2345cfc
--- /dev/null
+++ b/Makefile.am
@@ -0,0 +1,4 @@
+noinst_LIBRARIES = librtclient.a
+librtclient_a_SOURCES = \
+ rtclient.c \
+ rtclient.h
diff --git a/configure.ac b/configure.ac
new file mode 100644
index 0000000..5a4d375
--- /dev/null
+++ b/configure.ac
@@ -0,0 +1,9 @@
+AC_INIT([rtclient], [0.0], [rt@darapsa.co.id])
+AM_INIT_AUTOMAKE([-Wall -Werror foreign])
+AC_PROG_CC
+AC_PROG_RANLIB
+AM_PROG_AR
+AC_CONFIG_HEADERS([config.h])
+AC_CHECK_HEADER_STDBOOL
+AC_CONFIG_FILES([Makefile])
+AC_OUTPUT