commit 2a5a4fdc79effef6289fa10af2df903f2a88b7b2
Author:     Quentin Rameau <[email protected]>
AuthorDate: Wed May 25 15:56:33 2016 +0200
Commit:     Quentin Rameau <[email protected]>
CommitDate: Wed May 25 15:56:33 2016 +0200

    [driver] Fix libcc target in Makefile

diff --git a/driver/posix/Makefile b/driver/posix/Makefile
index 316f6a4..5012890 100644
--- a/driver/posix/Makefile
+++ b/driver/posix/Makefile
@@ -10,7 +10,7 @@ all: scc
 $(OBJS): ../../inc/cc.h
 
 ../../lib/libcc.a:
-       cd ../lib && $(MAKE) -e -$(MAKEFLAGS)
+       cd ../../lib && $(MAKE) -e -$(MAKEFLAGS)
 
 scc: $(OBJS) ../../lib/libcc.a
        $(CC) $(SCC_LDFLAGS) $(OBJS) ../../lib/libcc.a -o $@

Reply via email to