X-Git-Url: https://www.kengrimes.com/gitweb/?p=henge%2Fapc.git;a=blobdiff_plain;f=Makefile;fp=Makefile;h=d37a162f58e6358ffa1f1a30584e226d147d9b08;hp=a1e743fc3a4a0e6e037c0e496bfa34ae896c141f;hb=5e1b8a97f8f2252768d4b905be9e5d2e35e0d1e4;hpb=3bad0aca7a67e17205ffcac90a05df0fc75ae1c1 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.