]> rtime.felk.cvut.cz Git - frescor/fna.git/blobdiff - config.mk_example
add the modules for the frescan sched analysis with an initial API that we are discus...
[frescor/fna.git] / config.mk_example
index 1972c0693d38cd9111392ff88a78550babdca9b6..ea05f507f2b0a136e2b5774664186812599f4c67 100644 (file)
@@ -5,15 +5,32 @@ PLATFORM_PATH = $(HOME)/marte
 # the path for exporting programs linux_arch -> ./
 EXPORT_PATH = $(HOME)/export
 
+# 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) -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
\ No newline at end of file
+LDFLAGS = -L$(FNA_PATH)/lib -lfna