summaryrefslogtreecommitdiff
path: root/C/HF/chap4/cryptic/Makefile
blob: 64312d5ef9783cb83ea2b1d7b330ce896f51e9bb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
ecat: ecat.o encrypt.o
	cc -o ecat ecat.o encrypt.o

ecat.o: encrypt.h ecat.c
	cc -c ecat.c

message: message.o encrypt.o
	cc -o message message.o encrypt.o

message.o: encrypt.h message.c
	cc -c message.c

encrypt.o: encrypt.h encrypt.c
	cc -c encrypt.c