]> rtime.felk.cvut.cz Git - frescor/fna.git/blobdiff - config.mk_example
some reorganization... now the acceptor is simpler.. everything goes through requests...
[frescor/fna.git] / config.mk_example
index 3feb6cdd15950cc53d7f5ab09f953c83cbc0c279..ea05f507f2b0a136e2b5774664186812599f4c67 100644 (file)
@@ -5,18 +5,32 @@ PLATFORM_PATH = $(HOME)/marte
 # the path for exporting programs linux_arch -> ./
 EXPORT_PATH = $(HOME)/export
 
-# enable networks with their flag or 'no'
-RTEP_ENABLE = no # RTEP
+# enable networks with their flag (change DISABLED<->ENABLED)
+RTEP_ENABLE = RTEP_FNA_DISABLED
+UNIX_ENABLE = UNIX_FNA_DISABLED
+FRESCAN_ENABLE = FRESCAN_FNA_ENABLED
 
 # the gcc to use
 CC = mgcc
+
+FRESCOR_ROOT = $(HOME)/frescor
 # the path to the FRSH directory.
-FRSH_PATH = $(HOME)/frescor/frsh
+FRSH_PATH = $(FRESCOR_ROOT)/frsh
 # the path to the FOSA directory.
-FOSA_PATH = $(HOME)/frescor/fosa
+FOSA_PATH = $(FRESCOR_ROOT)/fosa
 # the path to the FNA directory.
-FNA_PATH = $(HOME)/frescor/fna
+FNA_PATH = $(FRESCOR_ROOT)/fna
+# the path to the UTILS directory
+UTILS_PATH = $(FRESCOR_ROOT)/utils
+
 # the compilation flags
-CFLAGS = -Wall -g -D$(PLATFORM) -D$(RTEP_ENABLE) -I$(FNA_PATH)/include -I$(FRSH_PATH)/include
+CFLAGS = -Wall -g -O1 -Wuninitialized \
+        -D$(PLATFORM) \
+        -I$(FNA_PATH)/include \
+        -I$(FRSH_PATH)/include \
+        -I$(FOSA_PATH)/include \
+        -I$(UTILS_PATH)/include \
+        -I$(FOSA_PATH)/marte_non_local_jump
+
 # the library flags
 LDFLAGS = -L$(FNA_PATH)/lib -lfna