diff options
author | Andrew Wilcox <AWilcox@Wilcox-Tech.com> | 2016-04-09 13:02:16 -0500 |
---|---|---|
committer | Andrew Wilcox <AWilcox@Wilcox-Tech.com> | 2016-04-09 13:02:16 -0500 |
commit | 4a2c467b9ddef475eb26a849958fd7c7e0e281d4 (patch) | |
tree | d72b278bcc31ef865183a186f54aef37afdbcec4 /Makefile | |
parent | ba7201c3c30bf9d74db3b54f666ec541661760bf (diff) | |
download | shimmy-4a2c467b9ddef475eb26a849958fd7c7e0e281d4.tar.gz shimmy-4a2c467b9ddef475eb26a849958fd7c7e0e281d4.tar.bz2 shimmy-4a2c467b9ddef475eb26a849958fd7c7e0e281d4.tar.xz shimmy-4a2c467b9ddef475eb26a849958fd7c7e0e281d4.zip |
Presenting the world's third-worst build system
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..54200fb --- /dev/null +++ b/Makefile @@ -0,0 +1,14 @@ +.POSIX: + +all: getconf/getconf + +getconf/getconf: + cd getconf && $(MAKE) + +clean: + cd getconf && $(MAKE) clean + +install: + mkdir -p $(DESTDIR)/usr/bin + mkdir -p $(DESTDIR)/usr/share/man/man1 + cd getconf && $(MAKE) install |