"Fossies" - the Fresh Open Source Software Archive

Member "libsafe-2.0-16/exploits/Makefile" (12 Jun 2002, 453 Bytes) of package /linux/misc/old/libsafe-2.0-16.tgz:


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 # $Name: release2_0-16 $
    2 # $Id: Makefile,v 1.7 2002/06/12 20:30:37 ttsai Exp $
    3 
    4 CC		= gcc
    5 CPP		= g++
    6 OBJDUMP		= objdump
    7 CCFLAGS		= -Wall
    8 LDFLAGS		= 
    9 EXECS		= t1 t3 t4 t5 t6 t1w t3w t4w canary-exploit \
   10 		    exploit-non-exec-stack
   11 
   12 all	::	$(EXECS)
   13 
   14 %	:	%.c
   15 		$(CC) -o $@ $(CCFLAGS) $(LDFLAGS) $<
   16 
   17 %.dis	:	%
   18 		$(OBJDUMP) --disassemble $< > $@
   19 
   20 clean	::
   21 		rm -f core *.bak *% *~ *.o a.out *.dis ${EXECS}
   22 		rm -f ${EXECS}
   23 
   24 purge	::	clean
   25 		rm -f $(EXECS)
   26