summaryrefslogtreecommitdiff
path: root/utils/lndir/Makefile
blob: c8223df094dbe3dea306d1180dea1f807a6412db (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
TOP=../..
include $(TOP)/mk/boilerplate.mk

C_SRCS=lndir.c
C_PROG=lndir

CLEAN_FILES += $(C_PROG)$(exeext) $(C_OBJS)
DESTDIR=$(INSTBINDIR)

include $(TOP)/mk/target.mk

# Win32: cygwin supports symlinks, so make sure we
#        don't feed in the mingw flags here. In other
#        words, lndir.exe is a cygwin-based app.
CC_OPTS := $(filter-out -mno-cygwin,$(CC_OPTS))