blob: d2430df162b8b64a9e0a4a9f1d66d1f9bff3c448 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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
|