summaryrefslogtreecommitdiffstats
path: root/utils/Makefile
diff options
context:
space:
mode:
authorGuillaume Rousse <guillomovitch@mandriva.org>2007-09-11 12:39:51 +0000
committerGuillaume Rousse <guillomovitch@mandriva.org>2007-09-11 12:39:51 +0000
commit25e03a3bb2c7bfbc1f3c177ee71c7f75683ebd9d (patch)
tree9afa5ad3fecc7aca66222da768ba0245ae479d65 /utils/Makefile
downloadsetup-25e03a3bb2c7bfbc1f3c177ee71c7f75683ebd9d.tar
setup-25e03a3bb2c7bfbc1f3c177ee71c7f75683ebd9d.tar.gz
setup-25e03a3bb2c7bfbc1f3c177ee71c7f75683ebd9d.tar.bz2
setup-25e03a3bb2c7bfbc1f3c177ee71c7f75683ebd9d.tar.xz
setup-25e03a3bb2c7bfbc1f3c177ee71c7f75683ebd9d.zip
move everything under trunk directory
Diffstat (limited to 'utils/Makefile')
-rw-r--r--utils/Makefile13
1 files changed, 13 insertions, 0 deletions
diff --git a/utils/Makefile b/utils/Makefile
new file mode 100644
index 0000000..f8ee2c3
--- /dev/null
+++ b/utils/Makefile
@@ -0,0 +1,13 @@
+mandir = /usr/share/man
+
+all: run-parts
+
+run-parts: run-parts.c
+ $(CC) $(CFLAGS) -o $@ $<
+
+clean:
+ rm -f run-parts *.o *~
+
+install: all
+ install -D -m 644 run-parts.8 $(DESTDIR)/$(mandir)/man8/run-parts.8
+ install -D -m 755 run-parts $(DESTDIR)/usr/bin/run-parts