home *** CD-ROM | disk | FTP | other *** search
/ Amiga ISO Collection / AmigaUtilCD2.iso / Misc / O802BIN.LHA / omega / tools / makefile < prev   
Encoding:
Makefile  |  1994-06-16  |  427 b   |  18 lines

  1. # The files in this directory are only useful to people who want to do
  2. # development of omega - decrypt will take any of the encrypted files in
  3. # ../omegalib and turn it into plain ascii, crypt will change the plain
  4. # ascii file back into the encrypted format
  5.  
  6. CC = gcc
  7.  
  8. all: crypt decrypt
  9.  
  10. crypt: crypt.c
  11.     $(CC) $(CFLAGS) crypt.c -o crypt
  12.  
  13. decrypt: decrypt.c
  14.     $(CC) $(CFLAGS) decrypt.c -o decrypt
  15.  
  16. clean:
  17.     rm -f crypt decrypt
  18.