blob: 9f45f969519daad4369015d5e7267087a57ce1d9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
thisconfigdir=./..
myfulldir=tests/resolve
mydir=resolve
BUILDTOP=$(REL)..$(S)..
RUN_SETUP = @KRB5_RUN_ENV@
PROG_LIBPATH=-L$(TOPLIBD)
PROG_RPATH=$(KRB5_LIBDIR)
OBJS=resolve.o
SRCS=$(srcdir)/resolve.c
all:: resolve
resolve: $(OBJS)
$(CC_LINK) -o resolve $(OBJS) $(LIBS)
check:: resolve
$(RUN_SETUP) ./resolve
install::
clean::
$(RM) resolve
# +++ Dependency line eater +++
#
# Makefile dependencies follow. This must be the last section in
# the Makefile.in file
#
$(OUTPRE)resolve.$(OBJEXT): resolve.c
|