diff options
author | kraxel <kraxel> | 2005-07-27 14:17:04 +0000 |
---|---|---|
committer | kraxel <kraxel> | 2005-07-27 14:17:04 +0000 |
commit | c2bfceb3f4f46d3b2d1df47c9368ffdcc37496ed (patch) | |
tree | 71cf2652aa1fc05295da25c5a813fb7489da6a4a /GNUmakefile | |
parent | 36e15966c4808a6edc453d1f8f7887a7d7823863 (diff) | |
download | input-c2bfceb3f4f46d3b2d1df47c9368ffdcc37496ed.tar.gz |
- added man-pages, contributed by Marcus Better <marcus@better.se>
Diffstat (limited to 'GNUmakefile')
-rw-r--r-- | GNUmakefile | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/GNUmakefile b/GNUmakefile index 0479955..8f96e6f 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -44,8 +44,12 @@ input-recv: input-recv.o input.o tcp.o input.o: input.c $(HEADERS) install: build - install -d $(bindir) - install -s lsinput input-events input-kbd input-send input-recv $(bindir) + $(INSTALL_DIR) $(bindir) $(mandir)/man8 + $(INSTALL_BINARY) lsinput input-events input-kbd input-send input-recv $(bindir) + $(INSTALL_DATA) lsinput.man $(mandir)/man8/lsinput.8 + $(INSTALL_DATA) input-kbd.man $(mandir)/man8/input-kbd.8 + $(INSTALL_DATA) input-events.man $(mandir)/man8/input-events.8 + clean: -rm -f *.o $(depfiles) |