| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100 | PREFIX = PolipoBINDIR = $(PREFIX)\binMANDIR = $(PREFIX)\manINFODIR = $(PREFIX)\infoLOCAL_ROOT = $(PREFIX)DISK_CACHE_ROOT = $(PREFIX)\cache# To compile with Unix CC:# CDEBUGFLAGS=-O# To compile with GCC:# CC = gcc# CDEBUGFLAGS = -Os -g -Wall -std=gnu99CDEBUGFLAGS = -Os -g -Wall# CDEBUGFLAGS = -Os -Wall# CDEBUGFLAGS = -g -Wall# To compile on a pure POSIX system:# CC = c89# CC = c99# CDEBUGFLAGS=-O# To compile with icc 7, you need -restrict.  (Their bug.)# CC=icc# CDEBUGFLAGS = -O -restrict# On System V (Solaris, HP/UX) you need the following:# PLATFORM_DEFINES = -DSVR4# On Solaris, you need the following:# LDLIBS = -lsocket -lnsl -lresolv# On mingw, you need EXE=.exe LDLIBS = -lwsock32 -lregexFILE_DEFINES = -DHAVE_REGEX# You may optionally also add any of the following to DEFINES:##  -DNO_DISK_CACHE to compile out the on-disk cache and local web server;#  -DNO_IPv6 to avoid using the RFC 3493 API and stick to stock#      Berkeley sockets;#  -DHAVE_IPv6 to force the use of the RFC 3493 API on systems other#      than GNU/Linux and BSD (let me know if it works);#  -DNO_FANCY_RESOLVER to compile out the asynchronous name resolution#      code;#  -DNO_STANDARD_RESOLVER to compile out the code that falls back to#      gethostbyname/getaddrinfo when DNS requests fail;#  -DNO_TUNNEL to compile out the code that handles CONNECT requests;#  -DNO_SOCKS to compile out the SOCKS gateway code.#  -DNO_FORBIDDEN to compile out the all of the forbidden URL code#  -DNO_REDIRECTOR to compile out the Squid-style redirector code#  -DNO_SYSLOG to compile out logging to syslogDEFINES = $(FILE_DEFINES) $(PLATFORM_DEFINES)CFLAGS = $(MD5INCLUDES) $(CDEBUGFLAGS) $(DEFINES) $(EXTRA_DEFINES)SRCS = util.c event.c io.c chunk.c atom.c object.c log.c diskcache.c main.c \       config.c local.c http.c client.c server.c auth.c tunnel.c \       http_parse.c parse_time.c dns.c forbidden.c \       md5import.c md5.c ftsimport.c fts_compat.c socks.c mingw.cOBJS = util.o event.o io.o chunk.o atom.o object.o log.o diskcache.o main.o \       config.o local.o http.o client.o server.o auth.o tunnel.o \       http_parse.o parse_time.o dns.o forbidden.o \       md5import.o ftsimport.o socks.o mingw.opolipo$(EXE): $(OBJS)	$(CC) $(CFLAGS) $(LDFLAGS) -o polipo$(EXE) $(OBJS) $(MD5LIBS) $(LDLIBS)ftsimport.o: ftsimport.c fts_compat.cmd5import.o: md5import.c md5.c.PHONY: all install install.binary install.manall: polipo$(EXE) polipo.info html/index.html localindex.htmlTAGS: $(SRCS)	etags $(SRCS).PHONY: cleanclean:	-rm -f polipo$(EXE) *.o *~ core TAGS gmon.out	-rm -f polipo.cp polipo.fn polipo.log polipo.vr	-rm -f polipo.cps polipo.info* polipo.pg polipo.toc polipo.vrs	-rm -f polipo.aux polipo.dvi polipo.ky polipo.ps polipo.tp	-rm -f polipo.dvi polipo.ps polipo.ps.gz polipo.pdf polipo.html	-rm -rf ./html/	-rm -f polipo.man.html
 |