home *** CD-ROM | disk | FTP | other *** search
/ kermit.columbia.edu / kermit.columbia.edu.tar / kermit.columbia.edu / sredird / old / Makefile < prev    next >
Makefile  |  2003-07-08  |  288b  |  15 lines

  1. # SRedird base makefile
  2. # Supplied by Kevin Bertram (kevin@cate.com.au)
  3.  
  4. CC=gcc
  5. CFLAGS=-O3 -pipe -fomit-frame-pointer
  6. WFLAGS=-Wall -W -Wshadow -Wpointer-arith -Wwrite-strings -pedantic
  7.  
  8. SRC=sredird.c
  9.  
  10. sredird:    sredird.c
  11.     $(CC) $(CFLAGS) $(WFLAGS) -o sredird $(SRC)
  12.  
  13. clean:
  14.     rm -f sredird
  15.