summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJakob Kaivo <jkk@ung.org>2019-07-19 13:59:09 -0400
committerJakob Kaivo <jkk@ung.org>2019-07-19 13:59:09 -0400
commitf6271e70410bd3363c7dc1a731f403330763c4e8 (patch)
tree5c26000a8fa818142d87804af42f308abe0e66d5
parent565ef9b451d1adf14ad6cbc08bc5bf77388ec5c9 (diff)
mktemp in C
-rw-r--r--.gitignore1
-rw-r--r--Makefile2
2 files changed, 2 insertions, 1 deletions
diff --git a/.gitignore b/.gitignore
index 419162d..dda3926 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,3 +1,4 @@
*.o
hostid
+mktemp
sync
diff --git a/Makefile b/Makefile
index 8ab7115..46557c1 100644
--- a/Makefile
+++ b/Makefile
@@ -1,6 +1,6 @@
.POSIX:
-PROGRAMS=hostid sync
+PROGRAMS=hostid mktemp sync
all: $(PROGRAMS)