mirror of
https://github.com/justinethier/cyclone.git
synced 2025-05-23 20:15:05 +02:00
Makefile: CYCLONE_FOO: replace -A with -I...
... in order to take into account the in tree libraries first.
This commit is contained in:
parent
74faacac50
commit
c294b642ad
1 changed files with 2 additions and 2 deletions
4
Makefile
4
Makefile
|
@ -9,8 +9,8 @@ include Makefile.config
|
|||
# Set up Cyclone here to build the compiler itself using a system-installed
|
||||
# compiler (EG: from bootstrap or an earlier cyclone version). Everything
|
||||
# else can then be built using our local binary.
|
||||
CYCLONE_SYSTEM = cyclone -A . -CLNK '-L.'
|
||||
CYCLONE_LOCAL = ./cyclone -A . -A libs -COPT '-Iinclude' -CLNK '-L.'
|
||||
CYCLONE_SYSTEM = cyclone -I . -CLNK '-L.'
|
||||
CYCLONE_LOCAL = ./cyclone -I . -I libs -COPT '-Iinclude' -CLNK '-L.'
|
||||
CCOMP = $(CC) $(CFLAGS)
|
||||
INDENT_CMD = indent -linux -l80 -i2 -nut
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue