| OLD | NEW |
| 1 # Copyright (C) 2006, 2007 Apple Inc. All rights reserved. | 1 # Copyright (C) 2006, 2007 Apple Inc. All rights reserved. |
| 2 # Copyright (C) 2006 Samuel Weinig <sam.weinig@gmail.com> | 2 # Copyright (C) 2006 Samuel Weinig <sam.weinig@gmail.com> |
| 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 | 5 # modification, are permitted provided that the following conditions |
| 6 # are met: | 6 # are met: |
| 7 # | 7 # |
| 8 # 1. Redistributions of source code must retain the above copyright | 8 # 1. 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 # 2. Redistributions in binary form must reproduce the above copyright | 10 # 2. Redistributions in binary form must reproduce the above copyright |
| (...skipping 21 matching lines...) Expand all Loading... |
| 32 $(WebCore)/bindings/v8 \ | 32 $(WebCore)/bindings/v8 \ |
| 33 $(WebCore)/bindings/objc \ | 33 $(WebCore)/bindings/objc \ |
| 34 $(WebCore)/css \ | 34 $(WebCore)/css \ |
| 35 $(WebCore)/dom \ | 35 $(WebCore)/dom \ |
| 36 $(WebCore)/html \ | 36 $(WebCore)/html \ |
| 37 $(WebCore)/inspector \ | 37 $(WebCore)/inspector \ |
| 38 $(WebCore)/page \ | 38 $(WebCore)/page \ |
| 39 $(WebCore)/plugins \ | 39 $(WebCore)/plugins \ |
| 40 $(WebCore)/storage \ | 40 $(WebCore)/storage \ |
| 41 $(WebCore)/xml \ | 41 $(WebCore)/xml \ |
| 42 $(WebCore)/workers \ |
| 42 $(WebCore)/svg \ | 43 $(WebCore)/svg \ |
| 43 # | 44 # |
| 44 | 45 |
| 45 .PHONY : all | 46 .PHONY : all |
| 46 | 47 |
| 47 ifeq ($(OS),MACOS) | 48 ifeq ($(OS),MACOS) |
| 48 all : \ | 49 all : \ |
| 49 CharsetData.cpp | 50 CharsetData.cpp |
| 50 endif | 51 endif |
| 51 | 52 |
| (...skipping 1118 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1170 # | 1171 # |
| 1171 | 1172 |
| 1172 # Sometimes script silently fails (Cygwin problem?), | 1173 # Sometimes script silently fails (Cygwin problem?), |
| 1173 # use a bounded loop to retry if so, but not do so forever. | 1174 # use a bounded loop to retry if so, but not do so forever. |
| 1174 V8%.h : %.idl $(V8_SCRIPTS) | 1175 V8%.h : %.idl $(V8_SCRIPTS) |
| 1175 rm -f $@; \ | 1176 rm -f $@; \ |
| 1176 for i in 1 2 3 4 5 6 7 8 9 10; do \ | 1177 for i in 1 2 3 4 5 6 7 8 9 10; do \ |
| 1177 if test -e $@; then break; fi; \ | 1178 if test -e $@; then break; fi; \ |
| 1178 perl -w -I $(PORTROOT)/bindings/scripts -I $(WebCore)/bindings/scripts
$(PORTROOT)/bindings/scripts/generate-bindings.pl --defines "$(FEATURE_DEFINES)
LANGUAGE_JAVASCRIPT V8_BINDING" --generator V8 --include svg --include dom --in
clude html --include css --include page --include xml --include plugins --output
dir . $< ; \ | 1179 perl -w -I $(PORTROOT)/bindings/scripts -I $(WebCore)/bindings/scripts
$(PORTROOT)/bindings/scripts/generate-bindings.pl --defines "$(FEATURE_DEFINES)
LANGUAGE_JAVASCRIPT V8_BINDING" --generator V8 --include svg --include dom --in
clude html --include css --include page --include xml --include plugins --output
dir . $< ; \ |
| 1179 done | 1180 done |
| OLD | NEW |