"Fossies" - the Fresh Open Source Software Archive

Member "sslproxy-1.1.2/Makefile" (27 Feb 2009, 359 Bytes) of package /linux/privat/old/sslproxy-1.1.2.tar.gz:


As a special service "Fossies" has tried to format the requested text file into HTML format (style: standard) with prefixed line numbers. Alternatively you can here view or download the uninterpreted source code file.

    1 export SSLPROXY_DIR = $(shell pwd)
    2 include Makefile.global
    3 
    4 TARGET = ssl_proxy
    5 OBJS = ssl_proxy.o
    6 
    7 all: $(TARGET)
    8 
    9 clean:
   10 	rm -f $(TARGET) core *.o
   11 
   12 release: r_tgz
   13 
   14 r_tgz:
   15 	git-archive --format=tar --prefix=sslproxy-$(VERSION)/ HEAD |gzip -9 >sslproxy-$(VERSION).tar.gz
   16 
   17 $(TARGET): $(OBJS)
   18 	$(LD) -o $@ $(OBJS) $(LDOPTS)
   19 
   20 %.o: %.c
   21 	$(CC) -c $(COPTS) $< -o $@