-
Notifications
You must be signed in to change notification settings - Fork 23
/
Makefile.in
52 lines (44 loc) · 1008 Bytes
/
Makefile.in
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
#
# Makefile
# $Id$
#
SHELL = /bin/sh
prefix = @prefix@
exec_prefix=@exec_prefix@
srcdir = @srcdir@
sbindir = @sbindir@
libdir = @libdir@
sysconfdir = @sysconfdir@
CC = @CC@
CFLAGS = @CFLAGS@
CPPFLAGS= @CPPFLAGS@
DEFS = @DEFS@ -DSYSCONFDIR=\"$(sysconfdir)\"
LDFLAGS = @LDFLAGS@
LIBS = @LIBS@
INCLUDES=
OBJS = init.o readconf.o util.o socks.o relay.o main.o \
auth-pwd.o get-bind.o
TARGET = srelay
.c.o:
$(CC) -I. $(CPPFLAGS) $(DEFS) $(CFLAGS) -c $<
all: $(TARGET)
$(TARGET): $(OBJS)
$(CC) $(OBJS) $(LIBS) $(LDFLAGS) -o $@
srelay.h: $(INCLUDES)
@touch $@
clean:
rm -f *.o *~ *.core core ktrace.out
distclean: clean
rm -f $(TARGET)
rm -f config.log config.status config.cache Makefile config.h
rm -f *.orig *.rej
rm -rf configure.lineno autom4te*.cache
rm -f readconf
init.o: init.c srelay.h
readconf.o: readconf.c srelay.h
util.o: util.c srelay.h
socks.o: socks.c srelay.h
relay.o: relay.c srelay.h
main.o: main.c srelay.h
auth-pwd.o: auth-pwd.c srelay.h
get-bind.o: get-bind.c srelay.h