From 8f1097a2b16b3dc07a10fa338edb308431313a9a Mon Sep 17 00:00:00 2001 From: j8takagi Date: Sun, 3 Mar 2013 19:04:29 +0900 Subject: [PATCH] =?utf8?q?Makefile=E3=81=AE=E4=BD=9C=E6=88=90?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit --- .gitignore | 3 +++ Makefile | 17 +++++++++++++++++ 2 files changed, 20 insertions(+) create mode 100644 .gitignore create mode 100644 Makefile diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..1872fa7 --- /dev/null +++ b/.gitignore @@ -0,0 +1,3 @@ +global_ip_chk +mydns_ip_update +login.html diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..b0dabeb --- /dev/null +++ b/Makefile @@ -0,0 +1,17 @@ +prefix ?= ~ +bindir ?= $(prefix)/bin + +INSTALL = install + +TARGETS = mydns_ip_update global_ip_chk + +.PHONY: all install distclean + +all: $(TARGETS) + +install: all + $(INSTALL) -d $(bindir) + $(INSTALL) $(TARGETS) $(bindir)/ + +distclean: + $(RM) $(TARGETS) -- 2.47.3