kore

Kore is a web application platform for writing scalable, concurrent web based processes in C or Python.
Commits | Files | Refs | README | LICENSE | git clone https://git.kore.io/kore.git

commit c078c8a306807de741865dd776c6da1f6a9c6f52
parent 5b8c880a62948d59eb99973db187f4ba063026a0
Author: Joris Vink <joris@coders.se>
Date:   Sat,  2 Aug 2014 13:01:58 +0200

Correct order for linking

Diffstat:
Makefile | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Makefile b/Makefile @@ -55,7 +55,7 @@ else endif all: $(S_OBJS) - $(CC) $(LDFLAGS) $(S_OBJS) -o $(KORE) + $(CC) $(S_OBJS) $(LDFLAGS) -o $(KORE) install: mkdir -p $(INCLUDE_DIR)