forked from vzaliva/simpleproxy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile.in
48 lines (34 loc) · 960 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
# $Id$
# Solaris 2.5
#CFLAGS=-fd -O -v -Xc -D__EXTENSIONS__ -DSUN
VPATH=@top_srcdir@
CC=@CC@
CFLAGS=@CFLAGS@ @DEFS@
LIBS=@LIBS@
INSTALL = @INSTALL@
LINT=@LINT@
top_srcdir=@top_srcdir@
srcdir=@srcdir@
prefix=@prefix@
exec_prefix=@exec_prefix@
bindir=@bindir@
mandir=@mandir@
RM=rm -f
all: simpleproxy
lint:
$(LINT) simpleproxy.c cfg.c
clean:
$(RM) *.o simpleproxy *~ core
distclean: clean
rm -f config.log config.cache config.status Makefile
install: simpleproxy
$(top_srcdir)/mkinstalldirs $(DESTDIR)$(bindir)
$(INSTALL) simpleproxy $(DESTDIR)$(bindir)
$(top_srcdir)/mkinstalldirs $(DESTDIR)$(mandir)/man1
$(INSTALL) $(top_srcdir)/simpleproxy.man $(DESTDIR)$(mandir)/man1/simpleproxy.1
simpleproxy: simpleproxy.o cfg.o Makefile
$(CC) $(CFLAGS) $(CPPFLAGS) $(LDFLAGS) -o simpleproxy simpleproxy.o cfg.o $(LIBS)
.c.o:
$(CC) $(CFLAGS) $(CPPFLAGS) $(LDFLAGS) -c $<
cfg.o: cfg.c cfg.h Makefile
simpleproxy.o: simpleproxy.c cfg.h Makefile