summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2015-08-17 06:37:10 -0700
committerKaz Kylheku <kaz@kylheku.com>2015-08-17 06:37:10 -0700
commit9d481651d4f20d186ffda0a8680c043e656949b8 (patch)
treea192078b11cae5a652f026758e7ae2b7b32cac25 /Makefile
parente1ddd69be814fa9fdaa2a0d2086c831f812e3cfa (diff)
downloadtxr-9d481651d4f20d186ffda0a8680c043e656949b8.tar.gz
txr-9d481651d4f20d186ffda0a8680c043e656949b8.tar.bz2
txr-9d481651d4f20d186ffda0a8680c043e656949b8.zip
Start of new way of handling variable arguments.
* Makefile (OBJS): Add args.o object. * args.c: New file. * args.h: New file.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 1f17291b..016a9c0b 100644
--- a/Makefile
+++ b/Makefile
@@ -47,7 +47,7 @@ EXTRA_OBJS-y :=
OBJS := txr.o lex.yy.o y.tab.o match.o lib.o regex.o gc.o unwind.o stream.o
OBJS += arith.o hash.o utf8.o filter.o eval.o parser.o rand.o combi.o sysif.o
-OBJS += lisplib.o cadr.o
+OBJS += args.o lisplib.o cadr.o
OBJS-$(debug_support) += debug.o
OBJS-$(have_syslog) += syslog.o
OBJS-$(have_glob) += glob.o