summaryrefslogtreecommitdiff
path: root/hostname/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'hostname/Makefile')
-rw-r--r--hostname/Makefile16
1 files changed, 16 insertions, 0 deletions
diff --git a/hostname/Makefile b/hostname/Makefile
new file mode 100644
index 0000000..bb4dc1b
--- /dev/null
+++ b/hostname/Makefile
@@ -0,0 +1,16 @@
+.POSIX:
+
+VERSTR=0.7
+
+CFLAGS=-D _POSIX_C_SOURCE=200809L -D _XOPEN_SOURCE=700 -D SHIMMY_VERSION=\"$(VERSTR)\"
+
+hostname: hostname.c
+ $(CC) $(CFLAGS) $(LDFLAGS) -o $@ $<
+
+clean:
+ -rm hostname
+
+install: hostname
+ cp hostname $(DESTDIR)/usr/bin/hostname
+ cp hostname.1 $(DESTDIR)/usr/share/man/man1/hostname.1
+