Palacios Public Git Repository

To checkout Palacios execute

  git clone http://v3vee.org/palacios/palacios.web/palacios.git
This will give you the master branch. You probably want the devel branch or one of the release branches. To switch to the devel branch, simply execute
  cd palacios
  git checkout --track -b devel origin/devel
The other branches are similar.


Moved v3_cons to being dynamically linked again, added a v3_cons_s not built by defau...
Patrick G. Bridges [Fri, 20 Jan 2012 18:31:18 +0000 (11:31 -0700)]
linux_usr/Makefile

index 8c5109c..5bbb2f6 100644 (file)
@@ -19,9 +19,13 @@ v3_load : v3_load.c v3_ctrl.h
 v3_mem : v3_mem.c v3_ctrl.h
        gcc -static v3_mem.c -o v3_mem 
 
-v3_cons : v3_cons.c v3_cons_sc.c v3_ctrl.h
-       gcc  -static -DNCURSES_STATIC v3_cons.c -o v3_cons -lcurses
-       gcc  -static -DNCURSES_STATIC v3_cons_sc.c -o v3_cons_sc -lcurses
+v3_cons_s: v3_cons.c v3_cons_sc.c v3_ctrl.h
+       -gcc  -static -DNCURSES_STATIC v3_cons.c -o v3_cons_s -lcurses # -ltinfo needed on fedora
+       -gcc  -static -DNCURSES_STATIC v3_cons_sc.c -o v3_cons_sc_s -lcurses # -ltinfo needed on fedora
+
+v3_cons: v3_cons.c v3_cons_sc.c v3_ctrl.h
+       -gcc  v3_cons.c -o v3_cons_s -lcurses
+       -gcc  v3_cons_sc.c -o v3_cons_sc_s -lcurses
 
 v3_stream : v3_stream.c v3_ctrl.h
        gcc -static v3_stream.c -o v3_stream