OLD | NEW |
1 # | 1 # |
2 # OpenSSL/tools/Makefile | 2 # OpenSSL/tools/Makefile |
3 # | 3 # |
4 | 4 |
5 DIR= tools | 5 DIR= tools |
6 TOP= .. | 6 TOP= .. |
7 CC= cc | 7 CC= cc |
8 INCLUDES= -I$(TOP) -I../../include | 8 INCLUDES= -I$(TOP) -I../../include |
9 CFLAG=-g | 9 CFLAG=-g |
10 MAKEFILE= Makefile | 10 MAKEFILE= Makefile |
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
42 | 42 |
43 tags: | 43 tags: |
44 | 44 |
45 errors: | 45 errors: |
46 | 46 |
47 depend: | 47 depend: |
48 | 48 |
49 dclean: | 49 dclean: |
50 $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKE
FILE) >Makefile.new | 50 $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKE
FILE) >Makefile.new |
51 mv -f Makefile.new $(MAKEFILE) | 51 mv -f Makefile.new $(MAKEFILE) |
| 52 rm -f c_rehash |
52 | 53 |
53 clean: | 54 clean: |
54 rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff | 55 rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff |
55 | 56 |
56 errors: | 57 errors: |
57 | 58 |
58 # DO NOT DELETE THIS LINE -- make depend depends on it. | 59 # DO NOT DELETE THIS LINE -- make depend depends on it. |
OLD | NEW |