diff options
author | ꦌ ꦫꦶ ꦏ꧀ꦦꦿ ꦧ ꦮ ꦑ ꦩ ꦭ꧀ <erik@darapsa.co.id> | 2019-10-05 18:06:14 +0800 |
---|---|---|
committer | ꦌ ꦫꦶ ꦏ꧀ꦦꦿ ꦧ ꦮ ꦑ ꦩ ꦭ꧀ <erik@darapsa.co.id> | 2019-10-05 18:06:14 +0800 |
commit | 89b7bef4c433bb42588eeec6e6f0d3d1c2a19b78 (patch) | |
tree | 06e1c4e8373ea09bf683f21b277329279ae292bd /Makefile.am | |
parent | c5660800d60921392b66703b30dfc72d5f42d351 (diff) |
Separate the product structure definition
so the catalog structure doesn't have to be included when not needed.
product.c has too few implementations, so it's merged to client.c
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile.am b/Makefile.am index 35121d3..2240f39 100644 --- a/Makefile.am +++ b/Makefile.am @@ -1,15 +1,15 @@ noinst_LIBRARIES = libicclient.a libicclient_a_SOURCES = \ - icclient/request.h \ - icclient/login.h \ icclient/product.h \ + icclient/catalog.h \ icclient/ord.h \ icclient/member.h \ icclient/admin.h \ icclient/client.h \ + request.h \ request.c \ + login.h \ login.c \ - product.c \ member.c \ admin.c \ client.c |