home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: Security / Security.zip / idea-v11.zip / Makefile < prev    next >
Makefile  |  1993-11-17  |  820b  |  27 lines

  1. # make          is used to build user command 'idea'
  2. # make raster   is used to build a user command 'idea' that is capable to 
  3. #               encrypt and decrypt rasterfiles (pictures on SUN computers)
  4. # make test     is used to test correctness of user command 'idea'
  5. # make lint     is used for debugging
  6. #
  7. # If 'ANSI_C' is defined in 'idea.h' then the preprocessed source code is
  8. # ANSI-C or C++ code, otherwise it is Kerninghan & Ritchie C code.
  9. #
  10. # change the next line such that your C-compiler is used
  11. CC      = acc -O2
  12.  
  13. all:    idea
  14.  
  15. idea:    idea_cmd.c idea.c idea.h
  16.     $(CC) -o idea idea_cmd.c idea.c
  17.  
  18. raster:    idea_cmd.c idea.c idea.h
  19.     $(CC) -DRASTERFILE -DTIME -o idea idea_cmd.c idea.c
  20.  
  21. test:    idea dumphex.c idea.h
  22.     $(CC) -o dumphex dumphex.c
  23.     test1
  24.  
  25. lint:    idea_cmd.c idea.c idea.h
  26.     alint -abchx idea_cmd.c idea.c
  27.