diff options
author | Peter Hutterer <peter.hutterer@who-t.net> | 2009-11-23 08:49:49 +1000 |
---|---|---|
committer | Peter Hutterer <peter.hutterer@who-t.net> | 2009-11-23 08:50:31 +1000 |
commit | 39614a8aae17223b9378359dc2697c73743d1a39 (patch) | |
tree | 238e8eecb58319798e11545e302ecf5c472b7697 | |
parent | be6eb26c0cf01da04d7a5012ee46c6b8a36b78db (diff) |
Add INSTALL and basic compilation instructions.
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
-rw-r--r-- | INSTALL | 15 | ||||
-rw-r--r-- | Makefile.am | 2 | ||||
-rw-r--r-- | evtest.c | 3 |
3 files changed, 19 insertions, 1 deletions
@@ -0,0 +1,15 @@ +Manual compilation (if autotools are not available): +$> gcc -o evtest evtest.c + +Otherwise, run the following commands. + +$> autoreconf -iv +$> configure --prefix=/usr +$> make +$> make install + +Adjust the prefix as necessary, on most distributions /usr is fine. +evtest itself has no requirements other than the C compiler, if you need +evtest-capture, install the libxml-2.0 development files. + + diff --git a/Makefile.am b/Makefile.am index 478df10..a9557c8 100644 --- a/Makefile.am +++ b/Makefile.am @@ -10,4 +10,4 @@ endif man1_MANS = evtest.man -EXTRA_DIST = $(man1_MANS) evtest-generate-device.xsl +EXTRA_DIST = $(man1_MANS) evtest-generate-device.xsl INSTALL @@ -3,6 +3,9 @@ * Copyright (c) 2009 Red Hat, Inc * * Event device test program + * + * See INSTALL for installation details or manually compile with + * gcc -o evtest evtest.c */ /* |