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.


Added updated sleep/wakeup functionality
[palacios.git] / linux_usr / Makefile
index dc1ab05..868d0d7 100644 (file)
@@ -99,13 +99,14 @@ libv3_ctrl.a : v3_ctrl.c v3_ctrl.h
 #
 ifeq ($(STATIC),1)
   CURSES_CFLAGS = -DNCURSES_STATIC
+  CURSES_LIBS = -ltermcap
 endif
 
 v3_cons: v3_cons.c
-       $(CC) $(CFLAGS) $(CURSES_CFLAGS) $< -lcurses -o $@
+       $(CC) $(CFLAGS) $(CURSES_CFLAGS) $< -lcurses $(CURSES_LIBS) -o $@
 
 v3_cons_sc: v3_cons_sc.c
-       $(CC) $(CFLAGS) $(CURSES_CFLAGS) $< -lcurses -o $@
+       $(CC) $(CFLAGS) $(CURSES_CFLAGS) $< -lcurses $(CURSES_LIBS) -o $@
 
 v3_create: v3_create.c ezxml.c libv3_ctrl.a 
        $(CC) $(CFLAGS) $^ -lv3_ctrl -L. -o $@