From 5e1b8a97f8f2252768d4b905be9e5d2e35e0d1e4 Mon Sep 17 00:00:00 2001 From: ken Date: Thu, 15 Dec 2016 23:01:59 -0800 Subject: [PATCH] Makefile v0.31 fixed object compilation --- Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index a1e743f..d37a162 100644 --- a/Makefile +++ b/Makefile @@ -17,13 +17,13 @@ RLCMD = $(RLC) $(RLFLAGS) -o $@ $< # C CC ?= gcc -CFLAGS ?= -Wall -Werror -CCMD = $(CC) $(CFLAGS) $(CPPFLAGS) -o $@ $< +CFLAGS ?= -Wall +CCMD = $(CC) $(CFLAGS) $(CPPFLAGS) -c -o $@ $< # Linker LD ?= ld LDFLAGS ?= -LDLIBS ?= +LDLIBS ?= -lunistring LDCMD = $(LD) $(LDFLAGS) $(LDLIBS) -o $@ $^ # APC is built from Ragel, Bison and C source code only. -- 2.18.0