diff options
Diffstat (limited to 'utils/touchy/Makefile')
-rw-r--r-- | utils/touchy/Makefile | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/utils/touchy/Makefile b/utils/touchy/Makefile new file mode 100644 index 0000000000..d2430df162 --- /dev/null +++ b/utils/touchy/Makefile @@ -0,0 +1,20 @@ +# +# Substitute for 'touch' on win32 platforms (without an Unix toolset installed). +# +TOP=../.. +include $(TOP)/mk/boilerplate.mk + +C_SRCS=touchy.c +C_PROG=touchy +SRC_CC_OPTS += -O + +# +# Install touchy in lib/.* +# +INSTALL_LIBEXECS += $(C_PROG) + +include $(TOP)/mk/target.mk + +# Get it over with! +boot :: all + |