diff options
author | Nicolas Vigier <boklm@mageia.org> | 2012-02-05 23:05:11 +0000 |
---|---|---|
committer | Nicolas Vigier <boklm@mageia.org> | 2012-02-05 23:05:11 +0000 |
commit | 5df6b296276461639ef93639028cd88b1402afae (patch) | |
tree | 3c936844180cc2a3d616f9d16b8e74140d1c0b0e | |
parent | 8d6c09eb486e4335f68367cbc07d8f133a106c43 (diff) | |
download | mgasoft-5df6b296276461639ef93639028cd88b1402afae.tar mgasoft-5df6b296276461639ef93639028cd88b1402afae.tar.gz mgasoft-5df6b296276461639ef93639028cd88b1402afae.tar.bz2 mgasoft-5df6b296276461639ef93639028cd88b1402afae.tar.xz mgasoft-5df6b296276461639ef93639028cd88b1402afae.zip |
-rw-r--r-- | Makefile | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..95d22e1 --- /dev/null +++ b/Makefile @@ -0,0 +1,13 @@ +BINFILES=mgasoft mgasoft-publish +CFGFILES=mgasoft.conf + +sysconfdir=/etc +bindir=/usr/bin + +all: + + +install: + install -d $(DESTDIR)$(bindir) $(DESTDIR)$(sysconfdir) + install -m 755 $(BINFILES) $(DESTDIR)$(bindir) + install -m 644 $(CFGFILES) $(DESTDIR)$(sysconfdir) |