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
11CC      = acc -O2
12
13all:	idea
14
15idea:	idea_cmd.c idea.c idea.h
16	$(CC) -o idea idea_cmd.c idea.c
17
18raster:	idea_cmd.c idea.c idea.h
19	$(CC) -DRASTERFILE -DTIME -o idea idea_cmd.c idea.c
20
21test:	idea dumphex.c idea.h
22	$(CC) -o dumphex dumphex.c
23	test1
24
25lint:	idea_cmd.c idea.c idea.h
26	alint -abchx idea_cmd.c idea.c
27