git.y1.nz

fbui

Framebuffer-based graphical environment
download: https://git.y1.nz/archives/fbui.tar.gz
README | Files | Log | Refs

libfbui/Term/Makefile

      1 
      2 SRC=ansi.c fbterm.c main.c forkpty.c iswprint.c 
      3 EXE=fbterm
      4 
      5 
      6 fbterm:	${SRC}
      7 	gcc -DHAVE_FORKPTY -I.. -g ${SRC} ../libfbui.a -o ${EXE} -lutil
      8 
      9 install: ${EXE}
     10 	cp ${EXE} /usr/bin
     11 	chmod 755 /usr/bin/${EXE}
     12 
     13 clean:
     14 	rm -f ${EXE}

This webpage is intended to be an accessible preview of this repository. To get a fuller picture, clone it and use the git CLI.