home *** CD-ROM | disk | FTP | other *** search
/ Hacks & Cracks / Hacks_and_Cracks.iso / hackersclub / km / downloads / c_scripts / fspscan.c / Makefile < prev    next >
Makefile  |  1994-05-18  |  395b  |  21 lines

  1. # Makefile for the FSP Port Scanner  -  by Cuda
  2. #############################################################################
  3. # This is where the version number string comes from:
  4. #
  5. VERSION_STR="Original Caltech version 1.0, Dec 1991"
  6.  
  7. CFLAGS=-O
  8.  
  9. PROGS=    fspscan
  10.  
  11. all:      ${PROGS}
  12.  
  13. fspscan: fspscan.o
  14.     cc ${CFLAGS} -o ${PROGS} ${PROGS}.o ${LIB}
  15.  
  16. fspscan.o: fspscan.c 
  17.  
  18. clean:
  19.     rm -f *.o ${PROGS}
  20.  
  21.