|
|
1.1 root 1: #
2: # Makefile for md5sum
3: #
4: # created by Peter Simons <[email protected]>
5: #
6:
7: #
8: # Labels:
9: # =======
10: #
11: CC = gcc
12: LD = gcc
13: PGPSRC = ../../src
14: OBJS = md5sum.o $(PGPSRC)/md5.o
15:
16: # On a big-endian system (e.g. Motorola), uncomment the following line:
17: #BYTEORDER= -DHIGHFIRST
18:
19:
20: # Compiler flags:
21: # ===============
22: #
23: # Define one of the following symbols to archive the described effect:
24: #
25: #
26: CFLAGS = $(BYTEORDER) -Wall -O2 -I ../../src
27:
28:
29: # Linker flags:
30: # =============
31: #
32: LDFLAGS =
33:
34:
35: #
36: # Targets
37: #
38: md5sum:
39: $(LD) $(OBJS) -o md5sum $(LDFLAGS)
40:
41: $(PGPSRC)/md5.o:
42: $(CC) -c $(PGPSRC)/md5.c -o $(PGPSRC)/md5.o $(CFLAGS)
43:
44: clean:
45: rm -f md5sum md5sum.o
46:
47:
48: #
49: # Dependencies
50: #
51: md5sum: $(OBJS)
52: md5sum.o: md5sum.c $(PGPSRC)/md5.h
This archive runs on limited infrastructure. Preserving old code on modern bandwidth. Automated agents are requested to crawl responsibly.