summaryrefslogtreecommitdiff
path: root/utils/unlit/Makefile
blob: dfa1b8db600abf1d2bad0c9847cb5d96cd793009 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
TOP=../..
include $(TOP)/mk/boilerplate.mk

C_SRCS=unlit.c
C_PROG=unlit
SRC_CC_OPTS += -O

# Get it over with!
boot :: all

#
# Install unlit in lib/
#
INSTALL_LIBEXECS += $(C_PROG)

binary-dist:
	$(INSTALL_DIR)               $(BIN_DIST_DIR)/utils/unlit
	$(INSTALL_DATA)    Makefile  $(BIN_DIST_DIR)/utils/unlit/
	$(INSTALL_PROGRAM) $(C_PROG) $(BIN_DIST_DIR)/utils/unlit/

include $(TOP)/mk/target.mk