X-Git-Url: http://git.droids-corp.org/?a=blobdiff_plain;ds=sidebyside;f=README;fp=README;h=150f0cd337476c6037d55ff5297396e389e694e7;hb=5519edcd46282b7219668916bf615b4fb8b900c1;hp=0000000000000000000000000000000000000000;hpb=820675afa07d25cbd53d98e92fc174021033daa2;p=libcmdline.git diff --git a/README b/README new file mode 100644 index 0000000..150f0cd --- /dev/null +++ b/README @@ -0,0 +1,18 @@ +This library provides an interface to implement command line +interfaces. It has no dependency except libc, and it contains its own +(lightweight) alternative to readline. The libcmdline library was +initially designed for very small devices like microcontrollers or +embedded devices running outside an OS, but it also fully works under +linux. + +To compile: + make + +Then install it: + make install PREFIX=/usr/local + +If you don't have libevent on your system, edit the libcmdline.vars.mk +file and comment the related line. + +To cross-compile the library (example for powerpc): + make CROSS=powerpc-linux-gnu-