| OLD | NEW |
| 1 # Copyright 2008, 2009, Google Inc. | 1 # Copyright 2008, 2009, Google Inc. |
| 2 # All rights reserved. | 2 # All rights reserved. |
| 3 # | 3 # |
| 4 # Redistribution and use in source and binary forms, with or without | 4 # Redistribution and use in source and binary forms, with or without |
| 5 # modification, are permitted provided that the following conditions are | 5 # modification, are permitted provided that the following conditions are |
| 6 # met: | 6 # met: |
| 7 # | 7 # |
| 8 # * Redistributions of source code must retain the above copyright | 8 # * Redistributions of source code must retain the above copyright |
| 9 # notice, this list of conditions and the following disclaimer. | 9 # notice, this list of conditions and the following disclaimer. |
| 10 # * Redistributions in binary form must reproduce the above | 10 # * Redistributions in binary form must reproduce the above |
| (...skipping 922 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 933 $(MAKE) -f $(THISMAKEFILE) sdkdirs | 933 $(MAKE) -f $(THISMAKEFILE) sdkdirs |
| 934 cp -f ../../third_party/gcc/COPYING* $(DESTDIR)$(SDKROOT) | 934 cp -f ../../third_party/gcc/COPYING* $(DESTDIR)$(SDKROOT) |
| 935 $(MAKE) -f $(THISMAKEFILE) BUILD/stamp-$(CROSSARCH)-binutils | 935 $(MAKE) -f $(THISMAKEFILE) BUILD/stamp-$(CROSSARCH)-binutils |
| 936 $(MAKE) -f $(THISMAKEFILE) BUILD/stamp-$(CROSSARCH)-pregcc | 936 $(MAKE) -f $(THISMAKEFILE) BUILD/stamp-$(CROSSARCH)-pregcc |
| 937 $(MAKE) -f $(THISMAKEFILE) BUILD/stamp-$(CROSSARCH)-newlib | 937 $(MAKE) -f $(THISMAKEFILE) BUILD/stamp-$(CROSSARCH)-newlib |
| 938 $(MAKE) -f $(THISMAKEFILE) nc_threads | 938 $(MAKE) -f $(THISMAKEFILE) nc_threads |
| 939 # We need libnacl.a for gfortran, but we don't have a c++ yet | 939 # We need libnacl.a for gfortran, but we don't have a c++ yet |
| 940 $(MAKE) -f $(THISMAKEFILE) nacl_libraries_nocpp | 940 $(MAKE) -f $(THISMAKEFILE) nacl_libraries_nocpp |
| 941 $(MAKE) -f $(THISMAKEFILE) BUILD/stamp-$(CROSSARCH)-gcc | 941 $(MAKE) -f $(THISMAKEFILE) BUILD/stamp-$(CROSSARCH)-gcc |
| 942 case $$(SRC/binutils/config.guess) in \ | 942 case $$(SRC/binutils/config.guess) in \ |
| 943 » *-linux*) $(MAKE) -f $(THISMAKEFILE) BUILD/stamp-gdb ;; \ | 943 » *-linux*) $(MAKE) -f $(THISMAKEFILE) BUILD/stamp-$(CROSSARCH)-gdb ;; \ |
| 944 esac | 944 esac |
| 945 $(MAKE) -f $(THISMAKEFILE) nacl_libraries | 945 $(MAKE) -f $(THISMAKEFILE) nacl_libraries |
| 946 $(MAKE) -f $(THISMAKEFILE) sdk_minimal_test | 946 $(MAKE) -f $(THISMAKEFILE) sdk_minimal_test |
| 947 $(MAKE) -f $(THISMAKEFILE) redirector | 947 $(MAKE) -f $(THISMAKEFILE) redirector |
| 948 # We delete posix_over_srpc library until it is good enough for binary | 948 # We delete posix_over_srpc library until it is good enough for binary |
| 949 # distribution. | 949 # distribution. |
| 950 rm -f "$(DESTDIR)$(SDKROOT)/$(CROSSARCH)"/lib{,/32}/libposix_over_srpc.a | 950 rm -f "$(DESTDIR)$(SDKROOT)/$(CROSSARCH)"/lib{,/32}/libposix_over_srpc.a |
| 951 | 951 |
| 952 ################################################################## | 952 ################################################################## |
| 953 # Run DejaGnu tests. | 953 # Run DejaGnu tests. |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 985 | 985 |
| 986 | 986 |
| 987 ################################################################## | 987 ################################################################## |
| 988 # Remove the BUILD directory. | 988 # Remove the BUILD directory. |
| 989 # Library builds are maintained by scons. | 989 # Library builds are maintained by scons. |
| 990 ################################################################## | 990 ################################################################## |
| 991 clean: | 991 clean: |
| 992 -rm -rf BUILD | 992 -rm -rf BUILD |
| 993 | 993 |
| 994 .PHONY: ALWAYS | 994 .PHONY: ALWAYS |
| OLD | NEW |