home *** CD-ROM | disk | FTP | other *** search
/ vim.ftp.fu-berlin.de / 2015-02-03.vim.ftp.fu-berlin.de.tar / vim.ftp.fu-berlin.de / amiga / vim46src.lha / vim-4.6 / src / xxd / Makefile.unix < prev    next >
Encoding:
Makefile  |  1996-08-29  |  105 b   |  8 lines

  1. # The most simplistic Makefile
  2.  
  3. xxd: xxd.c
  4.     $(CC) $(CFLAGS) -DUNIX xxd.c -o xxd
  5.  
  6. clean:
  7.     rm -f xxd xxd.o
  8.