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 1105 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1116 $(PORTROOT)/bindings/scripts/IDLParser.pm \ | 1116 $(PORTROOT)/bindings/scripts/IDLParser.pm \ |
1117 $(WebCore)/bindings/scripts/IDLStructure.pm \ | 1117 $(WebCore)/bindings/scripts/IDLStructure.pm \ |
1118 $(PORTROOT)/bindings/scripts/generate-bindings.pl \ | 1118 $(PORTROOT)/bindings/scripts/generate-bindings.pl \ |
1119 # | 1119 # |
1120 | 1120 |
1121 # Sometimes script silently fails (Cygwin problem?), | 1121 # Sometimes script silently fails (Cygwin problem?), |
1122 # use a bounded loop to retry if so, but not do so forever. | 1122 # use a bounded loop to retry if so, but not do so forever. |
1123 V8%.h : %.idl $(V8_BINDINGS_SCRIPTS) | 1123 V8%.h : %.idl $(V8_BINDINGS_SCRIPTS) |
1124 for i in 1 2 3 4 5 6 7 8 9 10; do \ | 1124 for i in 1 2 3 4 5 6 7 8 9 10; do \ |
1125 if test -e $@; then break; fi; \ | 1125 if test -e $@; then break; fi; \ |
1126 » 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 ../../../webkit/port/d
om --include ../../../webkit/port/html --include ../../../webkit/port/page --inc
lude ../../../webkit/port/xml --include svg --include dom --include html --inclu
de css --include page --include xml --outputdir . $< ; \ | 1126 » 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 ../../../webkit/pendin
g --include ../../../webkit/port/dom --include ../../../webkit/port/html --inclu
de ../../../webkit/port/page --include ../../../webkit/port/xml --include svg --
include dom --include html --include css --include page --include xml --outputdi
r . $< ; \ |
1127 done | 1127 done |
OLD | NEW |