aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorMattias Andrée <maandree@kth.se>2021-04-17 12:36:33 +0200
committerMattias Andrée <maandree@kth.se>2021-04-17 12:36:33 +0200
commit3515add90f4aa638f99a6fa7a38a414fee84890d (patch)
tree22e53950f59695a180c574d4216c1b013d7d5746 /Makefile
parentDo not use libsimple outside of the generator (diff)
downloadlibparser-3515add90f4aa638f99a6fa7a38a414fee84890d.tar.gz
libparser-3515add90f4aa638f99a6fa7a38a414fee84890d.tar.bz2
libparser-3515add90f4aa638f99a6fa7a38a414fee84890d.tar.xz
Do not require libsimple at runtime
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 9d3fc05..c8628b0 100644
--- a/Makefile
+++ b/Makefile
@@ -15,7 +15,7 @@ calc-example/calc-syntax.o: calc-example/calc-syntax.c libparser.h
$(CC) -fPIC -c -o $@ $< $(CPPFLAGS) $(CFLAGS)
libparser-generate: libparser-generate.o
- $(CC) -o $@ libparser-generate.o $(LDFLAGS) -lsimple
+ $(CC) -o $@ libparser-generate.o $(LDFLAGS)
libparser.a: libparser.o
$(AR) rc $@ libparser.o