aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Makefile
diff options
authorLuc Van Oostenryck <luc.vanoostenryck@gmail.com>2020-07-06 02:13:37 +0200
committerLuc Van Oostenryck <luc.vanoostenryck@gmail.com>2020-07-06 02:13:37 +0200
commitd2c1cda9f75c7e0244cc3a41f45965f28d3bb9ba (patch)
tree196c2828f9d7f2fe0f323d4bc5062d07aa876f2f /Makefile
parent8fce3d7a27fafa24d381f65cc9b90a169bf91e87 (diff)
parent61f53e257de47e29fe3d6eec6d233552e8116cb4 (diff)
downloadsparse-dev-d2c1cda9f75c7e0244cc3a41f45965f28d3bb9ba.tar.gz
Merge branch 'options'
A lot of content in lib.c have been added by just appending at the bottom of what was already present. As consequence, things are now not well organized at all, especially when related to the options. So, reorganize things a little bit here: * move all helpers on top * keep things alphabetically sorted * move options parsing in a separate file * move predefine-related stuff in a separate file
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 2 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index a292e42a..f4483f5a 100644
--- a/Makefile
+++ b/Makefile
@@ -52,7 +52,9 @@ LIB_OBJS += liveness.o
LIB_OBJS += memops.o
LIB_OBJS += opcode.o
LIB_OBJS += optimize.o
+LIB_OBJS += options.o
LIB_OBJS += parse.o
+LIB_OBJS += predefine.o
LIB_OBJS += pre-process.o
LIB_OBJS += ptrlist.o
LIB_OBJS += ptrmap.o