summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorꦌꦫꦶꦏ꧀ꦦꦿꦧꦮꦑꦩꦭ꧀ <erik@darapsa.co.id>2022-09-25 14:08:15 +0800
committerꦌꦫꦶꦏ꧀ꦦꦿꦧꦮꦑꦩꦭ꧀ <erik@darapsa.co.id>2022-09-25 14:08:15 +0800
commita40fe18ee941df058eb54112839998596e11c50b (patch)
tree850eac27d0a2802d5a07630975c336910e41767b
parent9618d876f78618ab39bbedb6f20270d9460ba725 (diff)
Update autotools files though not used yet
-rw-r--r--.gitignore16
-rw-r--r--Makefile.am29
-rw-r--r--configure.ac5
3 files changed, 19 insertions, 31 deletions
diff --git a/.gitignore b/.gitignore
index 9378f72..0d35a6f 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,28 +1,18 @@
*~
-*.la
-*.lo
-*.o
*.swp
-.deps
-.libs
-CMakeLists.txt.user
+*.user*
Makefile
-Makefile.am.user*
Makefile.in
aclocal.m4
ar-lib
autom4te.cache
-autoscan-2.69.log
-build*
+autoscan*.log
+build
compile
config.*
configure
configure.scan
depcomp
-html
install-sh
-libtool
ltmain.sh
-m4
missing
-stamp-h1
diff --git a/Makefile.am b/Makefile.am
index 639f184..40099d6 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -1,20 +1,19 @@
-lib_LTLIBRARIES = libqicclient.la
-libqicclient_la_SOURCES = \
- client.cxx \
+lib_LTLIBRARIES = libqinterchange.la
+libqinterchange_la_SOURCES = \
+ interchange.cxx \
catalog.cxx \
ord.cxx \
member.cxx \
admin.cxx \
- qicclient.hxx \
- qicclient/catalog.hxx \
- qicclient/ord.hxx \
- qicclient/member.hxx \
- qicclient/admin.hxx
-libqicclient_la_CPPFLAGS = $(QT_CFLAGS)
-libqicclient_la_LDFLAGS = $(QT_LIBS)
-include_HEADERS = qicclient.hxx
+ interchange.hxx \
+ interchange/catalog.hxx \
+ interchange/ord.hxx \
+ interchange/member.hxx \
+ interchange/admin.hxx
+libqinterchange_la_CPPFLAGS = $(DEPS_CFLAGS)
+include_HEADERS = interchange.hxx
pkginclude_HEADERS = \
- qicclient/catalog.hxx \
- qicclient/ord.hxx \
- qicclient/member.hxx \
- qicclient/admin.hxx
+ interchange/catalog.hxx \
+ interchange/ord.hxx \
+ interchange/member.hxx \
+ interchange/admin.hxx
diff --git a/configure.ac b/configure.ac
index 019ea69..a426bbe 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,9 +1,8 @@
-AC_INIT([qicclient], [0.0], [pt@darapsa.co.id])
+AC_INIT([qinterchange], [0.0], [prabowo@darapsa.org])
AM_INIT_AUTOMAKE([-Wall -Werror foreign])
AC_PROG_CXX
AM_PROG_AR
LT_INIT
-PKG_CHECK_MODULES([QT], [Qt5Core])
-AC_CONFIG_HEADERS([config.h])
+PKG_CHECK_MODULES([DEPS], [interchange Qt5Core])
AC_CONFIG_FILES([Makefile])
AC_OUTPUT