1
  
2
  
3
  
4
  
5
  
6
  
7
  
8
  
9
  
10
  
11
  
12
  
13
  
14
  
15
  
16
  
17
  
18
  
19
  
20
  
21
  
22
  
23
  
24
  
25
  
26
  
27
  
28
  
29
  
30
  
31
  
32
  
33
  
34
  
35
  
36
  
37
  
38
  
39
  
40
  
41
  
42
  
43
  
44
  
45
  
46
  
47
  
48
  
49
  
50
  
51
  
52
  
53
  
54
  
55
  
56
  
57
  
58
  
59
  
60
  
61
  
62
  
63
  
64
  
65
  
66
  
67
  
68
  
69
  
70
  
71
  
72
  
73
  
74
  
75
  
76
  
77
  
78
  
79
  
80
  
81
  
82
  
83
  
84
  
85
  
86
  
87
  
88
  
89
  
90
  
91
  
92
  
93
  
94
  
95
  
96
  
97
  
98
  
99
  
100
  
101
  
102
  
103
  
104
  
105
  
106
  
107
  
108
  
109
  
110
  
111
  
112
  
113
  
114
  
115
  
116
  
117
  
118
  
119
  
120
  
121
  
122
  
123
  
124
  
125
  
126
  
127
  
128
  
129
  
130
  
131
  
132
  
133
  
134
  
135
  
136
  
137
  
138
  
139
  
140
  
141
  
142
  
143
  
144
  
145
  
146
  
147
  
148
  
149
  
150
  
151
  
152
  
153
  
154
  
155
  
156
  
157
  
158
  
159
  
160
  
161
  
162
  
163
  
164
  
165
  
166
  
167
  
168
  
169
  
170
  
171
  
172
  
173
  
174
  
175
  
176
  
177
  
178
  
179
  
180
  
181
  
182
  
183
  
184
  
185
  
186
  
187
  
188
  
189
  
190
  
191
  
192
  
193
  
194
  
195
  
196
  
197
  
198
  
199
  
200
  
201
  
202
  
203
  
204
  
205
  
206
  
207
  
208
  
209
  
210
  
211
  
212
  
213
  
214
  
215
  
216
  
217
  
218
  
219
  
220
  
221
  
222
  
223
  
224
  
225
  
226
  
227
  
228
  
229
  
230
  
231
  
232
  
233
  
234
  
235
  
236
  
237
  
238
  
239
  
240
  
241
  
242
  
243
  
244
  
245
  
246
  
247
  
248
  
249
  
250
  
251
  
252
  
253
  
254
  
255
  
256
  
257
  
258
  
259
  
260
  
261
  
262
  
263
  
264
  
265
  
266
  
267
  
268
  
269
  
270
  
271
  
272
  
273
  
274
  
275
  
276
  
277
  
278
  
279
  
280
  
281
  
282
  
283
  
284
  
285
  
286
  
287
  
288
  
289
  
290
  
291
  
292
  
293
  
294
  
295
  
296
  
297
  
298
  
299
  
300
  
301
  
302
  
303
  
304
  
305
  
306
  
307
  
308
  
309
  
310
  
311
  
312
  
313
  
314
  
315
  
316
  
317
  
318
  
319
  
320
  
321
  
322
  
323
  
324
  
325
  
326
  
327
  
328
  
329
  
330
  
331
  
332
  
333
  
334
  
335
  
336
  
337
  
338
  
339
  
340
  
341
  
342
  
343
  
344
  
345
  
346
  
347
  
348
  
349
  
350
  
351
  
352
  
353
  
354
  
355
  
356
  
357
  
358
  
359
  
360
  
361
  
362
  
363
  
364
  
365
  
366
  
367
  
368
  
369
  
370
  
371
  
372
  
373
  
374
  
375
  
376
  
377
  
378
  
379
  
380
  
381
  
382
  
383
  
384
  
385
  
386
  
387
  
388
  
389
  
390
  
391
  
392
  
393
  
394
  
395
  
396
  
397
  
398
  
399
  
400
  
401
  
402
  
403
  
404
  
405
  
406
  
407
  
408
  
409
  
410
  
411
  
412
  
413
  
414
  
415
  
416
  
417
  
418
  
419
  
420
  
421
  
422
  
423
  
424
  
425
  
426
  
427
  
428
  
429
  
430
  
431
  
432
  
433
  
434
  
435
  
436
  
437
  
438
  
439
  
440
  
441
  
442
  
443
  
444
  
445
  
446
  
447
  
448
  
449
  
450
  
451
  
452
  
453
  
454
  
455
  
456
  
457
  
458
  
459
  
460
  
461
  
462
  
463
  
464
  
465
  
466
  
467
  
468
  
469
  
470
  
471
  
472
  
473
  
474
  
475
  
476
  
477
  
478
  
479
  
480
  
481
  
482
  
483
  
484
  
485
  
486
  
487
  
488
  
489
  
490
  
491
  
492
  
493
  
494
  
495
  
496
  
497
  
498
  
499
  
500
  
501
  
502
  
503
  
504
  
505
  
506
  
507
  
508
  
509
  
510
  
511
  
512
  
513
  
514
  
515
  
516
  
517
  
518
  
519
  
520
  
521
  
522
  
523
  
524
  
525
  
526
  
527
  
528
  
529
  
530
  
531
  
532
  
533
  
534
  
535
  
536
  
537
  
538
  
539
  
540
  
541
  
542
  
543
  
544
  
545
  
546
  
547
  
548
  
549
  
550
  
551
  
552
  
553
  
554
  
555
  
556
  
557
  
558
  
559
  
560
  
561
  
562
  
563
  
564
  
565
  
566
  
567
  
568
  
569
  
570
  
571
  
572
  
573
  
574
  
575
  
576
  
577
  
578
  
579
  
580
  
581
  
582
  
583
  
584
  
585
  
586
  
587
  
588
  
589
  
590
  
591
  
592
  
593
  
594
  
595
  
596
  
597
  
598
  
599
  
600
  
601
  
602
  
603
  
604
  
605
  
606
  
607
  
608
  
609
  
610
  
611
  
612
  
613
  
614
  
615
  
616
  
617
  
618
  
619
  
620
  
621
  
622
  
623
  
624
  
625
  
626
  
627
  
628
  
629
  
630
  
631
  
632
  
633
  
634
  
635
  
636
  
637
  
638
  
639
  
640
  
641
  
642
  
643
  
644
  
645
  
646
  
647
  
648
  
649
  
650
  
651
  
652
  
653
  
654
  
655
  
656
  
657
  
658
  
659
  
660
  
661
  
662
  
663
  
664
  
665
  
666
  
667
  
668
  
669
  
670
  
671
  
672
  
673
  
674
  
675
  
676
  
677
  
678
  
679
  
680
  
681
  
682
  
683
  
684
  
685
  
686
  
687
  
688
  
689
  
690
  
691
  
692
  
693
  
694
  
695
  
696
  
697
  
698
  
699
  
700
  
701
  
702
  
703
  
704
  
705
  
706
  
707
  
708
  
709
  
710
  
711
  
712
  
713
  
714
  
715
  
716
  
717
  
718
  
719
  
720
  
721
  
722
  
723
  
724
  
725
  
726
  
727
  
728
  
729
  
730
  
731
  
732
  
733
  
734
  
735
  
736
  
737
  
738
  
739
  
740
  
741
  
742
  
743
  
744
  
745
  
746
  
747
  
748
  
749
  
750
  
751
  
752
  
753
  
754
  
755
  
756
  
757
  
758
  
759
  
760
  
761
  
762
  
763
  
764
  
765
  
766
  
767
  
768
  
769
  
770
  
771
  
772
  
773
  
774
  
775
  
776
  
777
  
778
  
779
  
780
  
781
  
782
  
783
  
784
  
785
  
786
  
787
  
788
  
789
  
790
  
791
  
792
  
793
  
794
  
795
  
796
  
797
  
798
  
799
  
800
  
801
  
802
  
803
  
804
  
805
  
806
  
807
  
808
  
809
  
810
  
811
  
812
  
813
  
814
  
815
  
816
  
817
  
818
  
819
  
820
  
821
  
822
  
823
  
824
  
825
  
826
  
827
  
828
  
829
  
830
  
831
  
832
  
833
  
834
  
835
  
836
  
837
  
838
  
839
  
840
  
841
  
842
  
843
  
844
  
845
  
846
  
847
  
848
  
849
  
850
  
851
  
852
  
853
  
854
  
855
  
856
  
857
  
858
  
859
  
860
  
861
  
862
  
863
  
864
  
865
  
866
  
867
  
868
  
869
  
870
  
871
  
872
  
873
  
874
  
875
  
876
  
877
  
878
  
879
  
880
  
881
  
882
  
883
  
884
  
885
  
886
  
887
  
888
  
889
  
890
  
891
  
892
  
893
  
894
  
895
  
896
  
897
  
898
  
899
  
900
  
901
  
902
  
903
  
904
  
905
  
906
  
907
  
908
  
909
  
910
  
911
  
912
  
913
  
914
  
915
  
916
  
917
  
918
  
919
  
920
  
921
  
922
  
923
  
924
  
925
  
926
  
927
  
928
  
929
  
930
  
931
  
932
  
933
  
934
  
935
  
936
  
937
  
938
  
939
  
940
  
941
  
942
  
943
  
944
  
945
  
946
  
947
  
948
  
949
  
950
  
951
  
952
  
953
  
954
  
955
  
956
  
957
  
958
  
959
  
960
  
961
  
962
  
963
  
964
  
965
  
966
  
967
  
968
  
969
  
970
  
971
  
972
  
973
  
974
  
975
  
976
  
977
  
978
  
979
  
980
  
981
  
982
  
983
  
984
  
985
  
986
  
987
  
988
  
989
  
990
  
991
  
992
  
993
  
994
  
995
  
996
  
997
  
998
  
999
  
1000
  
1001
  
1002
  
1003
  
1004
  
1005
  
1006
  
1007
  
1008
  
1009
  
1010
  
1011
  
1012
  
1013
  
1014
  
1015
  
1016
  
1017
  
1018
  
1019
  
1020
  
1021
  
1022
  
1023
  
1024
  
1025
  
1026
  
1027
  
1028
  
1029
  
1030
  
1031
  
1032
  
1033
  
1034
  
1035
  
1036
  
1037
  
1038
  
1039
  
1040
  
1041
  
1042
  
1043
  
1044
  
1045
  
1046
  
1047
  
1048
  
1049
  
1050
  
1051
  
1052
  
1053
  
# 
# $Id: Makefile.in,v 1.366 2003/11/05 17:14:28 grubba Exp $ 
# 
 
# This line is needed on some machines. 
@SET_MAKE@ 
 
# Don't change this line.  Define EXTRALIBS before this line if you 
# wish to add any libraries. 
LIBS=@LIBS@ $(EXTRALIBS) 
 
# This is normall the install program in the source directory 
INSTALL=@INSTALL@ 
 
SRCDIR=@srcdir@ 
VPATH=@srcdir@ 
 
# These are used while compiling 
LIBDIR_SRC = @LIBDIR@ 
TMP_BINDIR = @BINDIR@ 
TMP_BUILDDIR = @BUILDDIR@ 
TMP_LIBDIR = $(TMP_BUILDDIR)/lib 
 
# This is used during autodoc extraction. 
DOCDIR = @DOCDIR@ 
 
# These are used during binary exports and installation. 
MANDIR_SRC = @MANDIR@ 
DOCDIR_SRC = @DOCDIR@ 
BASEDIR = @BASEDIR@ 
 
# These are used by the files generated by fixdepends.sh 
PIKE_SRC_DIR=$(SRCDIR) 
BUILD_BASE= 
 
# 
# RPM and package builders, listen up, because this is your only 
# documentation! This variable is prepended to the install path. 
# Please note that Pike will not work until moved into the proper 
# place.  -Hubbe 
#  
buildroot= 
 
prefix = @prefix@ 
exec_prefix = $(prefix)/bin 
lib_prefix = $(prefix)/lib/pike 
data_prefix = @datadir@ 
share_prefix = $(data_prefix)/pike 
man_prefix = $(prefix)/man 
 
# Arguments for test_pike.pike used by the verify targets. 
# TESTARGS = -a 
 
# Arguments for install.pike used by the install targets. 
INSTALLARGS = --new-style 
 
# 
# use bison please, yacc isn't good enough. 
# 
YACC=@YACC@ 
YFLAGS=-d -v 
 
# 
# This may be -pg 
# 
PROFIL=@PROFIL@ 
 
# 
# OS dependant flags 
# 
OSFLAGS= 
 
# 
#Enable warnings from the compiler, if wanted. 
# 
WARN=@WARN@ 
 
#add extra defines here 
DEFINES=@CPPFLAGS@ 
 
# -O should work with all compilers 
OPTIMIZE=@OPTIMIZE@ 
 
# interpret.o can't have -fomit-frame-pointer 
INTERPRET_DEOPTIMIZE=@INTERPRET_DEOPTIMIZE@ 
 
# Set to a flag for parallelizing make, e.g. -j2. It's given to make 
# at the level where it's most effective. 
MAKE_PARALLEL= 
 
# Preprocessor flags. 
PREFLAGS=-DPIKE_SRC_ROOT="$(BASEDIR)" -I. -I$(SRCDIR) $(DEFINES) 
OTHERFLAGS=@CFLAGS@ $(OSFLAGS) $(OPTIMIZE) $(WARN) $(PROFIL) 
NOOPTFLAGS=@CFLAGS@ @CPPFLAGS@ $(OSFLAGS) $(WARN) $(PROFIL) 
CFLAGS=$(PREFLAGS) $(OTHERFLAGS) 
 
SMARTLINK=@SMARTLINK@ 
REALCC=@REALCC@ 
CC=@CC@ 
CPP=@CPP@ 
 
FALLBACK_CC=@FALLBACK_CC@ 
 
AR=@AR@ 
 
LD=@LD@ 
LDFLAGS=@LDFLAGS@ @LINKFORSHARED@ $(EXTRALDFLAGS) 
 
DEFAULT_RUNPIKE=$(TMP_BUILDDIR)/pike -DNOT_INSTALLED -DPRECOMPILED_SEARCH_MORE -m$(TMP_BUILDDIR)/master.pike $(PIKEOPTS) 
USE_PIKE=pike $(PIKEOPTS) 
RUNPIKE=$(@RUNPIKE@) 
PIKE_MODULE_RELOC=@PIKE_MODULE_RELOC@ 
 
# Set to an appropriate invocation of valgrind (or similar) 
VALGRIND=@VALGRIND@ 
VALGRINDARGS=@VALGRINDARGS@ 
 
MAKE_FLAGS= 
 
# Add alloca.o if you don't have alloca() on your machine. 
# 
OBJ= \ 
 language.o \ 
 security.o \ 
 bignum.o \ 
 pike_cpulib.o \ 
 interpret.o \ 
 constants.o \ 
 cpp.o \ 
 fdlib.o \ 
 cyclic.o \ 
 array.o \ 
 backend.o \ 
 callback.o \ 
 encode.o \ 
 docode.o \ 
 dynamic_buffer.o \ 
 dynamic_load.o \ 
 error.o \ 
 fd_control.o \ 
 fsort.o \ 
 gc.o \ 
 hashtable.o \ 
 lex.o \ 
 multiset.o \ 
 signal_handler.o \ 
 pike_search.o \ 
 pike_types.o \ 
 main.o \ 
 mapping.o \ 
 pike_memory.o \ 
 module_support.o \ 
 pikecode.o \ 
 object.o \ 
 opcodes.o \ 
 operators.o \ 
 port.o \ 
 program.o \ 
 rbtree.o \ 
 rusage.o \ 
 stralloc.o \ 
 stuff.o \ 
 threads.o \ 
 version.o \ 
 queue.o \ 
 builtin.o \ 
 iterators.o \ 
 svalue.o \ 
 las.o \ 
 builtin_functions.o \ 
 peep.o \ 
 module.o @EXTRA_OBJS@ 
 
MODULE_REQUIREMENTS= \ 
  machine.h \ 
  global.h \ 
  precompile.sh-stamp \ 
  modules/static_module_makefile \ 
  modules/dynamic_module_makefile \ 
  $(SRCDIR)/language.h \ 
  $(SRCDIR)/interpret_protos.h \ 
  lib @EXTRA_MODULE_REQUIREMENTS@ 
 
SRC_TARGETS= \ 
 $(SRCDIR)/language.c \ 
 $(SRCDIR)/language.h \ 
 $(SRCDIR)/interpret_protos.h \ 
 $(SRCDIR)/interpret_functions_fixed.h \ 
 $(SRCDIR)/peep_engine.c \ 
 $(SRCDIR)/case_info.h \ 
 $(SRCDIR)/treeopt.h @PMOD_TARGETS@ 
 
 
# 
# User callable targets 
# 
 
# Update the dumped modules, but only if dump_modules has been used earlier. 
# 
# Since post_modules might be static, we must remake pike after them 
# to make sure they are linked in. 
all: module_objects tools 
        if [ -f dumpversion ]; then $(MAKE) $(MAKE_FLAGS) dump_modules; else :; fi 
        $(MAKE) $(MAKE_FLAGS) $(MAKE_PARALLEL) post_module_objects 
        $(MAKE) $(MAKE_FLAGS) $(MAKE_PARALLEL) pike 
        @if [ "`find . -name '*.fail' -print`" = "" ]; then :; else \ 
          echo; \ 
          echo "Pike compiled and linked ok, but the following file(s) "; \ 
          echo "failed to compile with full optimization.";\ 
          echo "This may affect performance negatively."; \ 
          find . -name '*.fail' -print | sed -e 's/\.fail$$//' -e 's/^/ /'; \ 
          echo; \ 
        fi 
 
documentation: onepage.xml traditional.xml modref.xml 
        cd $(DOCDIR) && $(MAKE) $(MAKE_FLAGS) PIKE="$(RUNPIKE)" \ 
          BUILDDIR="$(TMP_BUILDDIR)" $(DOCTARGET) 
 
# Backward compat. 
post_modules: post_module_objects 
 
post_module_objects: pike 
        @( cd post_modules ; rm remake >/dev/null 2>&1 || : ; \ 
           $(MAKE) $(MAKE_PARALLEL) $(MAKE_FLAGS) || \ 
             ( test -f remake && $(MAKE) $(MAKE_PARALLEL) $(MAKE_FLAGS) ) ) || exit $$? 
 
post_modules/modlist_headers.h: 
        @test -f post_modules/modlist_headers.h || touch post_modules/modlist_headers.h 
 
post_modules/modlist.h: 
        @test -f post_modules/modlist.h || touch post_modules/modlist.h 
 
post_modules/linker_options: 
        @test -f post_modules/linker_options || touch post_modules/linker_options 
 
compiler-warnings : clean 
        @echo Summarizing compiler warnings. 
        @echo 
        @if $(MAKE) $(MAKE_FLAGS) all 2>compiler-warnings ; then \ 
          echo; \ 
          echo 'Compilation warning summary:'; \ 
          echo '----------------------------'; \ 
        else \ 
          echo; \ 
          echo 'Compilation warning and error summary:'; \ 
          echo '--------------------------------------'; \ 
        fi 
        @echo 
        @cat compiler-warnings 
        @echo 
        @echo 'End of summary' 
        @echo '--------------' 
 
pike: $(OBJ) master-stamp pike.syms modules/linker_options post_modules/linker_options 
        -@if [ -f pike.old ] ; then rm -f pike.old || : ; else : ; fi 
        -@if [ -f pike.old.exe ] ; then rm -f pike.old.exe || : ; else : ; fi 
        -@if [ -f pike ] ; then mv pike pike.old || : ; else : ; fi 
        $(LD) $(LDFLAGS) $(OBJ) `cat modules/linker_options post_modules/linker_options` $(LIBS) -o pike 
# The dumped modules are removed whenever Pike is relinked since some 
# of the bytecode methods (e.g. ia32) stores absolute addresses to 
# global structs. That should probably be fixed in them so that dumped 
# modules aren't link order dependent. 
        if [ -f dumpversion ]; then $(MAKE) $(MAKE_FLAGS) delete_dumped_modules; else :; fi 
 
# purify 
pure: $(OBJ) master-stamp module_objects 
        -@mv pike pike.old 2>/dev/null || true 
        $(SMARTLINK) purify -max-threads=128 -thread_stack_change=8192 -free-queue-length=500 -inuse-at-exit=yes -chain-length=12 $(REALCC) $(LDFLAGS) $(OBJ) `cat modules/linker_options  post_modules/linker_options` $(LIBS) -o pike 
 
# purecov 
cover: $(OBJ) master-stamp module_objects 
        -@mv pike pike.old 2>/dev/null || true 
        $(SMARTLINK) purecov purify -max-threads=128 -thread_stack_change=8192 -free-queue-length=500 -inuse-at-exit=yes -chain-length=12 $(REALCC) $(LDFLAGS) $(OBJ) `cat modules/linker_options  post_modules/linker_options` $(LIBS) -o pike 
 
# quantify 
quant: $(OBJ) master-stamp module_objects 
        -@mv pike pike.old 2>/dev/null || true 
        $(SMARTLINK) quantify $(REALCC) $(LDFLAGS) $(OBJ) `cat modules/linker_options  post_modules/linker_options` $(LIBS) -o pike 
 
atom: pike 
        atom pike -tool atom -env threads -g -v `find lib/modules -type f -name '*.so' -print | sed -e 's/^/-incobj /g'` 
        mv pike pike.pre-atom 
        mv pike.third.threads pike 
        @echo Make sure you have '.' in your LD_LIBRARY_PATH. 
 
pixie: pike 
        atom pike -tool pixie -env threads -g -v `find lib/modules -type f -name '*.so' -print | sed -e 's/^/-incobj /g'` 
        mv pike pike.pre-pixie 
        mv pike.pixie.threads pixie 
        @echo Make sure you have '.' in your LD_LIBRARY_PATH. 
 
tools: hilfe rsif 
 
hilfe: $(TMP_BINDIR)/hilfe Makefile 
        @echo "Creating hilfe..."; \ 
        ( sed -e 's!/usr/bin/env pike!$(exec_prefix)/pike!' \ 
          <$(TMP_BINDIR)/hilfe >./hilfe && chmod 755 ./hilfe) || exit 1 ; 
 
rsif: $(TMP_BINDIR)/rsif Makefile 
        @echo "Creating rsif..."; \ 
        ( sed -e 's!pike!$(exec_prefix)/pike!' <$(TMP_BINDIR)/rsif \ 
          >./rsif && chmod 755 ./rsif) || exit 1 ; 
 
dump_modules: pike master-stamp 
        -rm dumpmodule.log 
        args="$(DUMPARGS)"; \ 
        args=$${args:-"--log-file --update-only=dumpversion --report-failed"}; \ 
        $(RUNPIKE) -x dump $$args \ 
        --recursive --target-dir=lib "$(LIBDIR_SRC)/modules" 
 
force_dump_modules: 
        -rm dumpversion 2>/dev/null 
        $(MAKE) $(MAKE_FLAGS) dump_modules 
 
delete_dumped_modules: 
        -find lib -type f -name \*.o | xargs rm -f 
 
undump_modules: delete_dumped_modules 
        -rm dumpversion 2>/dev/null 
 
.SUFFIXES: 
.SUFFIXES: .c .h .o .cmod .pp .pph .protos .h_src 
 
.c.pp: 
        $(CPP) $(PREFLAGS) -DPMOD_EXPORT=PMOD_EXPORT \ 
          -DPMOD_PROTO=PMOD_PROTO "$<" >"$@" 
 
.c.protos: precompile.sh-stamp 
        ./precompile.sh --cache fake_dynamic_load.pike >"$@" --cpp --protos \ 
          $(CPP) $(PREFLAGS) -DPMOD_EXPORT=PMOD_EXPORT \ 
            -DPMOD_PROTO=PMOD_PROTO -DPIKE_PRECOMPILER=1 "$<" || \ 
          { rm "$@"; exit 1; } 
 
.h.pph: 
        $(CPP) $(PREFLAGS) -DPMOD_EXPORT=PMOD_EXPORT \ 
          -DPMOD_PROTO=PMOD_PROTO "$<" >"$@" 
 
 
# Several optimizers have problems with interpret.c 
# First try compiling with optimization and if that doesn't work, without. 
# GCC dumps core on some files @ OSF1 
# This kluge should work around that... 
# Extra kludge added: interpret.o gets special flags (deoptimization) 
.c.o: 
        @echo "Compiling $<" ;\ 
        rm -f $@.fail >/dev/null 2>&1; \ 
        if test "x$@" = "xinterpret.o"; then EXTRAFLAGS="$(INTERPRET_DEOPTIMIZE)"; else EXTRAFLAGS=; fi; \ 
        if $(CC) $(CFLAGS) $$EXTRAFLAGS -c $< -o $@ ; then : ; else \ 
          status=$$?; \ 
          if test x"@noopt_retry@" = xyes ; then \ 
            echo "WARNING: Compiler failure! Trying without optimization!" >&2;\ 
            echo "$(CC) $(PREFLAGS) $(CFLAGS) $$EXTRAFLAGS -c $< -o $@" >$@.fail ;\ 
            if NO_ULIMIT=yes $(CC) $(PREFLAGS) $(NOOPTFLAGS) $$EXTRAFLAGS -c $< -o $@ ; then : ; else \ 
              status=$$?; \ 
              echo "Compilation command was:" >&2;\ 
              echo "$(CC) $(PREFLAGS) $(NOOPTFLAGS) $$EXTRAFLAGS -c $< -o $@" >&2 ;\ 
              exit $$status; \ 
            fi; \ 
          else \ 
            echo "Compilation command was:" >&2;\ 
            echo "$(CC) $(PREFLAGS) $(CFLAGS) $$EXTRAFLAGS -c $< -o $@" >&2 ;\ 
            exit $$status; \ 
          fi; \ 
        fi 
 
# 
# Please note that this must be accompanied by a dependency rule as 
# The .c file will not be created in the SOURCE directory otherwise. 
# -Hubbe 
# 
.cmod.c: precompile.sh-stamp $(TMP_BINDIR)/precompile.pike 
        ./precompile.sh --cache precompile.pike >"$@" "$<" || { rm "$@"; exit 1; } 
 
# This rule is used for some header files that are generated from the 
# source, to avoid excessive rebuilding when the source change in ways 
# that doesn't affect the header. 
# 
# It can cause a .h target to be out-of-date repeatedly, but since it 
# runs fast that's not an issue. This technique only works well in 
# make's that stat the target again after the rule has run and 
# recalculate the dependencies from that. Most make's seems to behave 
# like that. 
.h_src.h: 
        @if test -f "$@"; then \ 
          test -f "$@.nolines" || \ 
            sed -e '/^[ \t]*$$/d;/^[ \t]*#[ \t]*line.*$$/d' < "$@" > "$@.nolines" && \ 
          sed -e '/^[ \t]*$$/d;/^[ \t]*#[ \t]*line.*$$/d' < "$<" > "$<.nolines" && \ 
          cmp -s "$<.nolines" "$@.nolines"; \ 
        else \ 
          false; \ 
        fi || ( \ 
          rm -f "$@.nolines" 2>/dev/null; \ 
          echo "cp $< $@"; \ 
          cp "$<" "$@"; \ 
        ) 
 
force : 
        @: 
 
# install 
install: pike tools autodoc.xml 
        @$(RUNPIKE) $(TMP_BINDIR)/install.pike \ 
        exec_prefix="$(exec_prefix)" lib_prefix="$(lib_prefix)" \ 
        TMP_LIBDIR="$(TMP_LIBDIR)" LIBDIR_SRC="$(LIBDIR_SRC)" \ 
        SRCDIR="$(SRCDIR)" prefix="$(prefix)" DOCDIR_SRC="$(DOCDIR_SRC)" \ 
        MANDIR_SRC="$(MANDIR_SRC)" \ 
        man_prefix="$(man_prefix)" pike_name=$(pike_name) \ 
        fakeroot="$(buildroot)" PIKE_MODULE_RELOC="$(PIKE_MODULE_RELOC)" \ 
        $(INSTALLARGS) 
 
install_interactive: pike tools autodoc.xml 
        @$(RUNPIKE) $(TMP_BINDIR)/install.pike --interactive \ 
        exec_prefix="$(exec_prefix)"  prefix=$(prefix) \ 
        TMP_LIBDIR="$(TMP_LIBDIR)" LIBDIR_SRC="$(LIBDIR_SRC)" \ 
        SRCDIR="$(SRCDIR)" DOCDIR_SRC="$(DOCDIR_SRC)" \ 
        MANDIR_SRC="$(MANDIR_SRC)" \ 
        fakeroot="$(buildroot)" PIKE_MODULE_RELOC="$(PIKE_MODULE_RELOC)" 
 
# tidy up a bit 
tidy: 
        -rm -f *.fail *.o *.obj *.pp *.protos core y.output y.tab.c y.tab.h 
        -rm -f $(TMP_BINDIR)/core *.o *.i *.i~ testsuite dynloadtest* 
        -find lib -type f -name \*.o | xargs rm -f 
 
# make clean 
clean: tidy 
        -( cd modules; $(MAKE) $(MAKE_FLAGS) clean ) 
        -( cd post_modules; $(MAKE) $(MAKE_FLAGS) clean ) 
        -( cd tlib; find . -name testsuite | xargs rm ) 
        -rm -rf test-install test-pike testsuite_test_dir.pmod 
        -rm testsuite_test.pike testsuite.tmp 
        -rm -f TAGS tags yacc.acts yacc.debug yacc.tmp *.debug.log a.out 
        -rm -f hilfe rsif master.pike compiler-warnings 
        -rm -f import-stamp modules-stamp master-stamp 
        -rm -rf lib/modules/* 
#       -rm -f lib/master.pike 
 
# make _really_ clean 
spotless: clean 
        -(cd $(SRCDIR); find . -type f -name '*.h.in' -print) | \ 
          sed -e 's/\.in$$//' | xargs rm -f 
        find . -type f '(' -name 'Makefile' -o -name '*~' -o -name '.*~' -o \ 
          -name core -o -name '.nfs*' -name '#*#' -o -name '.pure' -o \ 
          -name 'conftest.*' -o -name 'stamp-h' ')' -exec rm -f \{\} \; 
        -rm -f lexical.c mon.out *.ln config.status 
        -rm -f $(TMP_BINDIR)/*~ $(TMP_BINDIR)/\#*\# 
        -rm -f pike pike.old l.outa* 
        -rm -f modules/*/testsuite 
        -rm -f modules/static_module_makefile modules/dynamic_module_makefile 
        -rm -f precompile.sh precompile.sh-stamp 
        -rm -rf lib 
 
distclean: spotless 
        find . -type f '(' -name 'config.log' -o -name 'config.status' -o \ 
          -name 'config.cache' ')' -exec rm -f \{\} \; 
 
cvsclean: distclean 
        ( for d in `cd $(SRCDIR) && find . -type d -print`; do \ 
            if test -f "$(SRCDIR)/$$d/.cvsignore" ; then \ 
              (cd "$$d" && rm -f `cat "$(SRCDIR)/$$d/.cvsignore"`); \ 
              (cd "$(SRCDIR)/$$d" && rm -f `cat "$(SRCDIR)/$$d/.cvsignore"`); \ 
            else :; fi; \ 
          done) 
 
# create tags 
tags: 
        ctags *.c 
 
TAGS: 
        etags -t *.h *.c 
 
# verify / debug 
testsuites: 
        ( cd modules && $(MAKE) $(MAKE_FLAGS) testsuites ) 
        ( cd post_modules && $(MAKE) $(MAKE_FLAGS) testsuites ) 
        ( cd $(TMP_BUILDDIR) && $(TMP_BINDIR)/mklibtests.sh --srcdir=$(LIBDIR_SRC) \ 
          --destdir=tlib --bindir=$(TMP_BINDIR) ) 
 
just_verify: testsuites testsuite master-stamp 
        if test "x$(TESTARGS)" = x ; then args="-a -v" ; \ 
        else args="$(TESTARGS)" ; fi; \ 
        $(RUNPIKE) $(TMP_BINDIR)/test_pike.pike $$args 
 
valgrind_verify: testsuites testsuite master-stamp 
        if test "x$(TESTARGS)" = x ; then args="-a -v" ; \ 
        else args="$(TESTARGS)" ; fi; \ 
        $(VALGRIND) $(VALGRINDARGS) $(RUNPIKE) $(TMP_BINDIR)/test_pike.pike $$args 
 
# Testsuite for dynamic loading debugging 
test_dlopen: dynloadtest.sh 
        sh ./dynloadtest.sh 
 
dynloadtest.sh: $(SRCDIR)/test_dynamic_loading.in 
        m4 "$(SRCDIR)/test_dynamic_loading.in" >"$@" 
 
dynloadtest.c: dynamic_load.c 
 
dynloadtest: dynloadtest.o @EXTRA_OBJS@ fdlib.o port.o 
        $(LD) $(LDFLAGS) dynloadtest.o @EXTRA_OBJS@ fdlib.o port.o $(LIBS) -o dynloadtest 
 
 
tinstall: master-stamp autodoc-stamp 
        -rm -rf test-install 
        $(RUNPIKE) $(TMP_BINDIR)/install.pike lib_prefix="$(lib_prefix)" \ 
        TMP_LIBDIR="$(TMP_LIBDIR)" LIBDIR_SRC="$(LIBDIR_SRC)" \ 
        SRCDIR="$(SRCDIR)" DOCDIR_SRC="$(DOCDIR_SRC)" \ 
        MANDIR_SRC="$(MANDIR_SRC)" \ 
        man_prefix="$(man_prefix)" fakeroot="$(buildroot)" \ 
        PIKE_MODULE_RELOC="$(PIKE_MODULE_RELOC)" pike_name="test-pike" \ 
        prefix="./test-install" $(INSTALLARGS) 
 
just-tinstall: master-stamp autodoc-stamp 
        $(RUNPIKE) $(TMP_BINDIR)/install.pike lib_prefix="$(lib_prefix)" \ 
        TMP_LIBDIR="$(TMP_LIBDIR)" LIBDIR_SRC="$(LIBDIR_SRC)" \ 
        SRCDIR="$(SRCDIR)" DOCDIR_SRC="$(DOCDIR_SRC)" \ 
        MANDIR_SRC="$(MANDIR_SRC)" \ 
        man_prefix="$(man_prefix)" fakeroot="$(buildroot)" \ 
        PIKE_MODULE_RELOC="$(PIKE_MODULE_RELOC)" pike_name="test-pike" \ 
        prefix="./test-install" $(INSTALLARGS) 
 
 
verify: testsuites testsuite tinstall 
        PIKE_MODULE_PATH=""; PIKE_INCLUDE_PATH=""; \ 
        if test "$(TESTARGS)" = "" ; then args="-a -v" ; else \ 
          args="$(TESTARGS)" ; fi; \ 
        if test -f ./test-pike ; then \ 
          $(VALGRIND) $(VALGRINDARGS) ./test-pike -DNOT_INSTALLED $(PIKEOPTS) $(TMP_BINDIR)/test_pike.pike $$args ; \ 
        else \ 
          sprsh `pwd`/test-install/pike/*/bin/pike.exe -DNOT_INSTALLED $(PIKEOPTS) $(TMP_BINDIR)/test_pike.pike $$args ; \ 
        fi 
 
bench: tinstall 
        if test -f ./test-pike ; then \ 
          ./test-pike -DNOT_INSTALLED $(PIKEOPTS) -x benchmark; \ 
        else \ 
          sprsh `pwd`/test-install/pike/*/bin/pike.exe -DNOT_INSTALLED $(PIKEOPTS) -x benchmark ; \ 
        fi 
 
verify_installed: testsuites testsuite master-stamp 
        if test "$(TESTARGS)" = "" ; then args="-a -v" ; else \ 
          args="$(TESTARGS)" ; fi; \ 
        $(exec_prefix)/pike $(PIKEOPTS) $(TMP_BINDIR)/test_pike.pike $$args 
 
check: verify 
 
sure: verify 
 
# verify / debug verbose 
verbose_verify: testsuites testsuite master-stamp 
        if test "$(TESTARGS)" = "" ; then args="-a" ; else args="$(TESTARGS)" ; fi; \ 
        $(RUNPIKE) $(TMP_BINDIR)/test_pike.pike -v -v $$args 
 
# verify & debug VERBOSE 
gdb_verify: testsuites testsuite master-stamp 
        @echo >.gdbinit handle SIGFPE nostop noprint pass 
        @echo >>.gdbinit handle SIGUSR1 nostop noprint pass 
        @echo >>.gdbinit handle SIGUSR2 nostop noprint pass 
        @echo >>.gdbinit handle SIGLWP nostop noprint pass 
        @if kill -l | grep SIGRTMIN >/dev/null ; then \ 
          echo >>.gdbinit handle SIG32 nostop noprint pass ;\ 
        else :; fi 
        @echo >>.gdbinit break debug_fatal 
        @echo >>.gdbinit break pike_gdb_breakpoint 
        @if test "$(TESTARGS)" = "" ; then args="-a -v -v" ; else \ 
          args="$(TESTARGS)" ; fi;  \ 
        echo >>.gdbinit set args -m$(TMP_BUILDDIR)/master.pike $(PIKEOPTS) $(TMP_BINDIR)/test_pike.pike --no-watchdog $$args 
        gdb $(TMP_BUILDDIR)/pike 
        @rm .gdbinit 
 
# fast test 
fast_verify_testsuite: testsuite 
        PIKE_MODULE_PATH=""; PIKE_INCLUDE_PATH=""; \ 
        if test "$(TESTARGS)" = "" ; then args="-a" ; else args="$(TESTARGS)" ; fi; \ 
        if test -f ./test-pike ; then ./test-pike -DNOT_INSTALLED $(PIKEOPTS) $(TMP_BINDIR)/test_pike.pike $$args ; else sprsh `pwd`/test-install/pike/*/bin/pike.exe -DNOT_INSTALLED $(PIKEOPTS) $(TMP_BINDIR)/test_pike.pike $$args ; fi 
 
# run hilfe, for interactive testing 
run_hilfe: master.pike 
        $(RUNPIKE) $(ARGS) 
 
valgrind_hilfe: master.pike 
        $(VALGRIND) $(VALGRINDARGS) $(RUNPIKE) $(ARGS) 
 
feature_list: 
        $(RUNPIKE) $(TMP_BINDIR)/feature_list 
 
run_bench: 
        $(RUNPIKE) $(ARGS) -x benchmark 
 
lib: Makefile 
        @for d in lib lib/modules lib/include; do \ 
          if [ -d $$d/. ]; then : ; else \ 
            echo "Creating $$d/."; \ 
            (mkdir $$d && chmod u+rwx $$d) || exit 1; \ 
          fi ; \ 
        done 
        @echo "Done." 
        -@touch ./lib 2>/dev/null || (touch lib/.broken_gnu_touch && rm lib/.broken_gnu_touch) 
 
 
master.pike: $(LIBDIR_SRC)/master.pike.in Makefile 
        t="$$PIKE_PATH_TRANSLATE"; if test "x$$t" = "x"; then t=s,x,x,; else :; fi; \ 
        if test "x$(PIKE_MODULE_RELOC)" = "x"; then u=s,x,x,; else u='s/^#undef PIKE_MODULE_RELOC/#define PIKE_MODULE_RELOC 1/'; fi; \ 
        sed -e 's!¤lib_prefix¤!'"`echo "$(TMP_LIBDIR)" | sed -e "$$t"`"'!' <$(LIBDIR_SRC)/master.pike.in \ 
          | sed -e 's!¤share_prefix¤!'"`echo "$(LIBDIR_SRC)" | sed -e "$$t"`"'!' \ 
          | sed -e 's!¤include_prefix¤!'"`echo "$(TMP_BUILDDIR)" | sed -e "$$t"`"'!' \ 
          | sed -e "$$u" >master.pike 
 
# Want master.pike up-to-date, but yet there's no dependency on the 
# that file. Works like the .h_src.h target. 
master-stamp: master.pike 
        @test -f master-stamp || echo foo > master-stamp 
 
# 
# Documentation related stuff. 
# 
 
onepage.xml: autodoc.xml $(DOCDIR)/structure/onepage.xml 
        (cd "$(DOCDIR)" && \ 
          $(RUNPIKE) -x assemble_autodoc structure/onepage.xml \ 
            $(TMP_BUILDDIR)/autodoc.xml) >onepage.xml 
 
traditional.xml: autodoc.xml $(DOCDIR)/structure/traditional.xml 
        ( cd "$(DOCDIR)" && \ 
          $(RUNPIKE) -x assemble_autodoc structure/traditional.xml \ 
            $(TMP_BUILDDIR)/autodoc.xml) >traditional.xml 
 
modref.xml: autodoc.xml $(DOCDIR)/structure/modref.xml 
        (cd "$(DOCDIR)" && \ 
          $(RUNPIKE) -x assemble_autodoc structure/modref.xml \ 
            $(TMP_BUILDDIR)/autodoc.xml) >modref.xml 
 
autodoc.xml: pike doc_build/src doc_build/lib doc_build/images images force 
        $(RUNPIKE) -x extract_autodoc -q --srcdir=$(SRCDIR) \ 
          --imgsrc=$(DOCDIR)/src_images --builddir=doc_build/src \ 
          --imgdir=doc_build/images 
        $(RUNPIKE) -x extract_autodoc -q --srcdir=$(LIBDIR_SRC) \ 
          --imgsrc=$(DOCDIR)/src_images --builddir=doc_build/lib \ 
          --imgdir=doc_build/images 
        $(RUNPIKE) -x join_autodoc --quiet --post-process autodoc.xml doc_build 
 
autodoc-stamp: autodoc.xml 
        @test -d autodoc-stamp || echo foo > autodoc-stamp 
 
images: doc_build/src/post_modules/GTK/refdoc/images 
        @cp $(SRCDIR)/post_modules/GTK/refdoc/images/*.png \ 
          doc_build/src/post_modules/GTK/refdoc/images/ 
 
# Directories 
 
doc_build: 
        @test -d doc_build || mkdir doc_build 
 
doc_build/src: doc_build 
        @test -d doc_build/src || mkdir doc_build/src 
 
doc_build/lib: doc_build 
        @test -d doc_build/lib || mkdir doc_build/lib 
 
doc_build/images: doc_build 
        @test -d doc_build/images || mkdir doc_build/images 
 
doc_build/src/post_modules/GTK/refdoc/images: doc_build/src 
        @test -d doc_build/src/post_modules || \ 
          mkdir doc_build/src/post_modules 
        @test -d doc_build/src/post_modules/GTK || \ 
          mkdir doc_build/src/post_modules/GTK 
        @test -d doc_build/src/post_modules/GTK/refdoc || \ 
          mkdir doc_build/src/post_modules/GTK/refdoc 
        @test -d doc_build/src/post_modules/GTK/refdoc/images || \ 
          mkdir doc_build/src/post_modules/GTK/refdoc/images 
 
 
pike.syms: $(SRCDIR)/interpret.c $(SRCDIR)/interpreter.h $(SRCDIR)/program.c $(SRCDIR)/builtin_functions.c 
        ( cat $(SRCDIR)/*.h *.h | egrep  '^[  ]*#[     ]*define[      ][       ]*[a-zA-Z_0-9]*[       ][      ]*[0-9][xabcdefABCDEF0-9]*[  ]*' ; \ 
        echo "#define" `$(CPP) $(PREFLAGS) -DSTEP_BREAK_LINE='STEP_BREAK_LINE __LINE__' $(SRCDIR)/interpreter.h | grep STEP_BREAK_LINE` ) >pike.syms 
 
# We touch the files that depend on language.h_src and 
# interpret_protos.h_src to ensure that the .h_src.h rule doesn't have 
# anything to do in the dist. 
source: depend 
        if test -f $(SRCDIR)/language.c; then touch $(SRCDIR)/language.c; else :; fi 
        if test -f $(SRCDIR)/language.h; then touch $(SRCDIR)/language.h; else :; fi 
        if test -f $(SRCDIR)/interpret_protos.h; then touch $(SRCDIR)/interpret_protos.h; else :; fi 
 
# make export archive (requires compiled Pike) 
# Do not compile in source tree if you want to use this! 
# Beware that export archive this includes bison/yacc/byacc source 
# and thus has to follow the rules stated in that code. 
 
full_export: source 
        chmod +x $(SRCDIR)/install-sh 
        $(RUNPIKE) $(TMP_BINDIR)/export.pike --srcdir="$(SRCDIR)"  \ 
        --exportlist=src/export_list --name=Pike-v%maj.%min.%bld --tag 
 
EXPORT_NAME=Pike-v%maj.%min-%Y%M%D 
snapshot_export: source 
        chmod +x $(SRCDIR)/install-sh 
        $(RUNPIKE) $(TMP_BINDIR)/export.pike --srcdir="$(SRCDIR)"  \ 
        --exportlist=src/export_list --name=$(EXPORT_NAME) $(EXPORTARGS) 
 
export: full_export 
 
bin_export:  
        @rm -f *.burk 
        @$(RUNPIKE) $(TMP_BINDIR)/install.pike --export \ 
        exec_prefix="$(exec_prefix)" lib_prefix="$(lib_prefix)" \ 
        TMP_LIBDIR="$(TMP_LIBDIR)" LIBDIR_SRC="$(LIBDIR_SRC)" \ 
        SRCDIR="$(SRCDIR)" prefix="$(prefix)" DOCDIR_SRC="$(DOCDIR_SRC)" \ 
        MANDIR_SRC="$(MANDIR_SRC)" \ 
        BASEDIR="$(BASEDIR)" man_prefix="$(man_prefix)" \ 
        pike_name=$(pike_name) PIKE_MODULE_RELOC="$(PIKE_MODULE_RELOC)" 
        @case " $(CC)" in \ 
          *\ rnt*) \ 
            $(MAKE) $(MAKE_FLAGS) uncompress_header ;\ 
            echo "Compressing..." ;\ 
            filename=`echo *.burk | sed 's@\.burk$$@@g'`.exe ;\ 
            ( cat uncompress_header.exe ; gzip -9 -c *.burk ) > $$filename ;\ 
            echo "Done." ;\ 
          ;; \ 
        esac 
 
#new_peep_engine: 
#       $(RUNPIKE) $(TMP_BINDIR)/mkpeep.pike $(SRCDIR)/peep.in >$(SRCDIR)/peep_engine.c 
#       $(RUNPIKE) $(TMP_BINDIR)/make_ci.pike <$(SRCDIR)/UnicodeData.txt >$(SRCDIR)/case_info.h 
 
$(SRCDIR)/peep_engine.c: $(SRCDIR)/peep.in $(TMP_BINDIR)/mkpeep.pike 
        ./precompile.sh $(TMP_BINDIR)/mkpeep.pike $(SRCDIR)/peep.in >$(SRCDIR)/peep_engine.c || ( rm $(SRCDIR)/peep_engine.c ; exit 1 ) 
 
peep.o: $(SRCDIR)/peep_engine.c 
 
$(SRCDIR)/case_info.h: $(SRCDIR)/UnicodeData.txt $(TMP_BINDIR)/make_ci.pike 
        ./precompile.sh $(TMP_BINDIR)/make_ci.pike $(SRCDIR)/case_info.h \ 
          <$(SRCDIR)/UnicodeData.txt 
 
builtin_functions.o: $(SRCDIR)/case_info.h $(SRCDIR)/combine_path.h 
 
$(SRCDIR)/treeopt.h: $(SRCDIR)/treeopt.in $(TMP_BINDIR)/mktreeopt.pike 
        ./precompile.sh $(TMP_BINDIR)/mktreeopt.pike $(SRCDIR)/treeopt.in || ( rm $(SRCDIR)/treeopt.h ; exit 1 ) 
 
las.o: $(SRCDIR)/treeopt.h 
 
# This dependency is here to make sure that lexer[012].h are generated. 
# The reason for the split is that some compilers (read lc) generate 
# better code then. Strange, but true. 
lex.o: lexer0.h lexer1.h lexer2.h 
 
lex.protos: lexer0.h lexer1.h lexer2.h 
 
lexer0.h: lexer.h 
        cp "$(SRCDIR)/lexer.h" "$@" 
 
lexer1.h: lexer.h 
        cp "$(SRCDIR)/lexer.h" "$@" 
 
lexer2.h: lexer.h 
        cp "$(SRCDIR)/lexer.h" "$@" 
 
 
# unbug needs interpreter_nd.h to be able to 
# set separate breakpoints in eval_instruction_with/without_debug 
interpreter_debug.h: interpreter.h 
        cp "$(SRCDIR)/interpreter.h" "$@" 
 
interpret.o: interpreter_debug.h $(SRCDIR)/interpret_functions_fixed.h 
 
# make dependencies 
depend: $(SRC_TARGETS) 
        gcc -MM -MG $(PREFLAGS) $(SRCDIR)/*.c | $(TMP_BINDIR)/fixdepends.sh "$(SRCDIR)" "$(SRCDIR)" /dev/null 
        -@(while :; do \ 
          echo foo > cfl.$@; test "`echo cfl.*`" = cfl.$@ && break; \ 
          rm cfl.$@; echo "Waiting to run config.status serially:" cfl.*; sleep 1; \ 
          arb=37; while test $$arb != 0; do arb=`expr $$arb - 1`; done; \ 
        done;) 
        CONFIG_FILES=Makefile CONFIG_HEADERS="" ./config.status || \ 
          (EXITCODE=$$?; rm cfl.$@; exit $$EXITCODE) 
        -@rm cfl.$@ 
        @( cd modules && { \ 
          rm -f remake; \ 
          $(MAKE) $(MAKE_FLAGS) depend || \ 
            { test -f remake && $(MAKE) $(MAKE_FLAGS) depend; }; \ 
        }) 
        @if [ "x$(RUNPIKE)" != "x$(DEFAULT_RUNPIKE)" -o -x $(TMP_BUILDDIR)/pike ]; then \ 
          $(MAKE) $(MAKE_FLAGS) post_modules_depend; \ 
        else \ 
          echo "Skipping make depend in post_modules since a fresh pike is"; \ 
          echo "needed to make the autogenerated sources there."; \ 
          :; \ 
        fi 
 
post_modules_depend: 
        @if [ "x$(RUNPIKE)" != "x$(DEFAULT_RUNPIKE)" -o -x $(TMP_BUILDDIR)/pike ]; then :; \ 
        else $(MAKE) $(MAKE_FLAGS) $(MAKE_PARALLEL) pike; fi 
        @( cd post_modules && { \ 
          rm -f remake; \ 
          $(MAKE) $(MAKE_FLAGS) depend || \ 
            { test -f remake && $(MAKE) $(MAKE_FLAGS) depend; }; \ 
        }) 
 
# 
# Pike internal targets 
# 
 
# touch modules-stamp here to avoid doing this work again if that 
# target is checked later. 
module_objects: $(MODULE_REQUIREMENTS) 
        @( cd modules ; rm remake >/dev/null 2>&1 || : ; \ 
           $(MAKE) $(MAKE_PARALLEL) $(MAKE_FLAGS) || \ 
             ( test -f remake && $(MAKE) $(MAKE_PARALLEL) $(MAKE_FLAGS) ) ) || exit $$? 
        @touch modules-stamp 
 
modules-stamp: $(MODULE_REQUIREMENTS) 
        @( cd modules ; rm remake >/dev/null 2>&1 || : ; \ 
           $(MAKE) $(MAKE_PARALLEL) $(MAKE_FLAGS) || \ 
             ( test -f remake && $(MAKE) $(MAKE_PARALLEL) $(MAKE_FLAGS) ) ) || exit $$? 
        @touch modules-stamp 
 
modules/modlist.h: modules-stamp 
 
modules/modlist_headers.h: modules-stamp 
 
modules/linker_options: modules-stamp 
 
module.o:  modules/modlist_headers.h modules/modlist.h 
 
$(SRCDIR)/interpret_protos.h_src: $(SRCDIR)/interpret_functions.h $(SRCDIR)/strip_opcodes 
        $(CPP) $(PREFLAGS) -DGEN_PROTOS $(SRCDIR)/interpret_functions.h | $(SRCDIR)/strip_opcodes >$(SRCDIR)/interpret_protos.h_src || { rm $(SRCDIR)/interpret_protos.h_src; exit 1; } 
 
lex.o: $(SRCDIR)/lex.c $(SRCDIR)/interpret_protos.h 
 
interpret.o: $(SRCDIR)/lex.c $(SRCDIR)/interpret_protos.h 
 
lex_t.o: $(SRCDIR)/lex_t.c $(SRCDIR)/interpret_protos.h 
 
language.o: $(SRCDIR)/language.c $(SRCDIR)/object.h $(SRCDIR)/interpret.h $(SRCDIR)/program.h 
 
$(SRCDIR)/language.c $(SRCDIR)/language.h_src: $(SRCDIR)/language.yacc 
        @echo "Expect 1 shift/reduce conflict." 
        ( cd $(SRCDIR) && \ 
         $(YACC) $(YFLAGS) $(SRCDIR)/language.yacc && \ 
         sed -e 's/YY_COUNT_TYPE/@YY_COUNT_TYPE@/' \ 
             -e 's/YY_FROM_CONST/@YY_FROM_CONST@/' <y.tab.c >language.c && \ 
         mv y.tab.h language.h_src && rm y.tab.c) 
 
$(SRCDIR)/interpret_functions_fixed.h: $(SRCDIR)/interpret_functions.h precompile.sh-stamp 
        ./precompile.sh --cache make_interpret_functions.pike >"$@" "$(SRCDIR)/interpret_functions.h" || { rm "$@"; exit 1; } 
 
# UnixWare make needs help to find the source file... 
builtin.o: $(SRCDIR)/builtin.c 
 
iterators.o: $(SRCDIR)/iterators.c 
 
backend.o: $(SRCDIR)/backend.c 
 
# Internal testing target 
run_yacc: $(SRCDIR)/language.c 
 
$(SRCDIR)/configure: $(SRCDIR)/configure.in $(SRCDIR)/aclocal.m4 
        cd $(SRCDIR) && autoconf 
 
config.status: $(SRCDIR)/configure 
        ./config.status --recheck 
 
modules/common_module_makefile: $(SRCDIR)/modules/common_module_makefile.in config.status 
        -@(while :; do \ 
          echo foo > cfl.common_module_makefile; test "`echo cfl.*`" = cfl.common_module_makefile && break; \ 
          rm cfl.common_module_makefile; echo "Waiting to run config.status serially:" cfl.*; sleep 1; \ 
          arb=17; while test $$arb != 0; do arb=`expr $$arb - 1`; done; \ 
        done;) 
        CONFIG_FILES=modules/common_module_makefile CONFIG_HEADERS="" ./config.status || \ 
          (EXITCODE=$$?; rm cfl.common_module_makefile; exit $$EXITCODE) 
        -@rm cfl.common_module_makefile 
 
modules/static_module_makefile: modules/common_module_makefile $(SRCDIR)/modules/static_module_makefile.in config.status 
        -@(while :; do \ 
          echo foo > cfl.static_module_makefile; test "`echo cfl.*`" = cfl.static_module_makefile && break; \ 
          rm cfl.static_module_makefile; echo "Waiting to run config.status serially:" cfl.*; sleep 1; \ 
          arb=17; while test $$arb != 0; do arb=`expr $$arb - 1`; done; \ 
        done;) 
        CONFIG_FILES=modules/static_module_makefile CONFIG_HEADERS="" ./config.status || \ 
          (EXITCODE=$$?; rm cfl.static_module_makefile; exit $$EXITCODE) 
        -@rm cfl.static_module_makefile 
 
modules/dynamic_module_makefile: modules/common_module_makefile $(SRCDIR)/@dmmsrc@ config.status 
        -@(while :; do \ 
          echo foo > cfl.dynamic_module_makefile; test "`echo cfl.*`" = cfl.dynamic_module_makefile && break; \ 
          rm cfl.dynamic_module_makefile; echo "Waiting to run config.status serially:" cfl.*; sleep 1; \ 
          arb=19; while test $$arb != 0; do arb=`expr $$arb - 1`; done; \ 
        done;) 
        CONFIG_FILES=modules/dynamic_module_makefile:@dmmsrc@ CONFIG_HEADERS="" ./config.status || \ 
          (EXITCODE=$$?; rm cfl.dynamic_module_makefile; exit $$EXITCODE) 
        -@rm cfl.dynamic_module_makefile 
 
Makefile: $(SRCDIR)/Makefile.in $(SRCDIR)/dependencies config.status 
        -@(while :; do \ 
          echo foo > cfl.$@; test "`echo cfl.*`" = cfl.$@ && break; \ 
          rm cfl.$@; echo "Waiting to run config.status serially:" cfl.*; sleep 1; \ 
          arb=23; while test $$arb != 0; do arb=`expr $$arb - 1`; done; \ 
        done;) 
        CONFIG_FILES=Makefile CONFIG_HEADERS="" ./config.status || \ 
          (EXITCODE=$$?; rm cfl.$@; exit $$EXITCODE) 
        -@rm cfl.$@ 
        touch remake 
        @echo "Run make again" 
        @exit 1 
 
precompile.sh: $(SRCDIR)/precompile.sh.in ./config.status 
        -@(while :; do \ 
          echo foo > cfl.$@; test "`echo cfl.*`" = cfl.$@ && break; \ 
          rm cfl.$@; echo "Waiting to run config.status serially:" cfl.*; sleep 1; \ 
          arb=29; while test $$arb != 0; do arb=`expr $$arb - 1`; done; \ 
        done;) 
        CONFIG_FILES=precompile.sh CONFIG_HEADERS="" ./config.status || \ 
          (EXITCODE=$$?; rm cfl.$@; exit $$EXITCODE) 
        -@rm cfl.$@ 
 
# A dependency on precompile.sh-stamp only ensures that precompile.sh 
# exists, not that it's older than the target. In source dists, 
# precompile.sh is almost always newer than the targets that depend on 
# it, e.g. builtin.c that comes with the dist. 
# 
# The date stamp used to be 0103000070, but that seems to confuse some 
# recent OS's, that haven't heard of the 70's... 
# 
# Note that gnu touch is stupid, and warns about the syntax; thus the 
# redirect of stderr. 
precompile.sh-stamp: precompile.sh 
        @touch 0101010185 precompile.sh-stamp 2>/dev/null 
 
$(SRCDIR)/machine.h.in: $(SRCDIR)/stamp-h.in 
        @if test -f $(SRCDIR)/machine.h.in; then :; else \ 
          rm $(SRCDIR)/stamp-h.in; $(MAKE) $(SRCDIR)/stamp-h.in; \ 
        fi 
 
$(SRCDIR)/stamp-h.in: $(SRCDIR)/configure.in $(SRCDIR)/acconfig.h 
        cd $(SRCDIR) && autoheader 
        echo foo > $(SRCDIR)/stamp-h.in 
 
machine.h: stamp-h 
        @if test -f machine.h; then :; else \ 
          rm stamp-h; $(MAKE) stamp-h; \ 
        fi 
 
stamp-h: $(SRCDIR)/stamp-h.in $(SRCDIR)/machine.h.in config.status 
        -@(while :; do \ 
          echo foo > cfl.$@; test "`echo cfl.*`" = cfl.$@ && break; \ 
          rm cfl.$@; echo "Waiting to run config.status serially:" cfl.*; sleep 1; \ 
          arb=31; while test $$arb != 0; do arb=`expr $$arb - 1`; done; \ 
        done;) 
        CONFIG_FILES="" CONFIG_HEADERS=machine.h ./config.status || \ 
          (EXITCODE=$$?; rm cfl.$@; exit $$EXITCODE) 
        touch stamp-h 
        -@rm cfl.$@ 
 
testsuite: $(SRCDIR)/testsuite.in $(TMP_BINDIR)/mktestsuite 
        if test "$$PIKE_PATH_TRANSLATE" = ""; then \ 
          $(TMP_BINDIR)/mktestsuite $(SRCDIR)/testsuite.in >testsuite \ 
            -DSRCDIR="$(SRCDIR)"; \ 
        else \ 
          $(TMP_BINDIR)/mktestsuite $(SRCDIR)/testsuite.in >testsuite \ 
            -DSRCDIR="`echo $(SRCDIR)|sed -e $$PIKE_PATH_TRANSLATE`"; \ 
        fi 
 
header_uncompress: $(SRCDIR)/uncompressor.c 
        $(CC) -O2 -static  $(SRCDIR)/uncompressor.c -o header_uncompress -lz 
 
uncompress_header: $(SRCDIR)/uncompressor.c header_uncompress 
        $(CC) -O2 -static  $(SRCDIR)/uncompressor.c -o uncompress_header -lz -DSEEK_TO=`wc -c header_uncompress|sed 's/[^0-9]//g'` 
        test "`wc -c header_uncompress|sed 's/[^0-9]//g'`" = "`wc -c uncompress_header|sed 's/[^0-9]//g'`" 
 
HFILES=                                         \ 
  operators.protos                                      \ 
  array.protos                                  \ 
  fd_control.protos                                     \ 
  backend.protos                                        \ 
  fdlib.protos                                  \ 
  bignum.protos                                 \ 
  fsort.protos                                  \ 
  pike_memory.protos                                    \ 
  pike_types.protos                                     \ 
  gc.protos                                             \ 
  port.protos                                   \ 
  callback.protos                                       \ 
  hashtable.protos                                      \ 
  program.protos                                        \ 
  interpret.protos                                      \ 
  constants.protos                                      \ 
  language.protos                                       \ 
  queue.protos                                  \ 
  cpp.protos                                            \ 
  rusage.protos                                 \ 
  cyclic.protos                                 \ 
  lex.protos                                            \ 
  security.protos                                       \ 
  signal_handler.protos                         \ 
  pike_search.protos                            \ 
  docode.protos                                 \ 
  main.protos                                   \ 
  stralloc.protos                                       \ 
  mapping.protos                                        \ 
  stuff.protos                                  \ 
  dynamic_buffer.protos                         \ 
  svalue.protos                                 \ 
  dynamic_load.protos                           \ 
  module_support.protos                         \ 
  threads.protos                                        \ 
  multiset.protos                                       \ 
  encode.protos                                 \ 
  object.protos                                 \ 
  error.protos                                  \ 
  opcodes.protos                                        \ 
  version.protos                                    \ 
  builtin.protos                                        \ 
  iterators.protos                              \ 
  rbtree.protos 
 
$(HFILES): precompile.sh-stamp 
 
import-stamp: $(HFILES) precompile.sh-stamp 
        @./precompile.sh fake_dynamic_load.pike >import_functions.tmp $(HFILES) 
        @cmp import_functions.tmp import_functions.h >/dev/null || mv import_functions.tmp import_functions.h 
        @echo hej >import-stamp 
 
import_functions.h: import-stamp 
        test -f import-stamp || ( rm import-stamp ; $(MAKE) import-stamp ) 
 
export_functions.c: import_functions.h 
        touch export_functions.c 
 
module.o: post_modules/modlist.h post_modules/modlist_headers.h  
 
# Must have manual depends on all the bytecode methods in the code 
# dir, since make depend will only include the one that was chosen, 
# and that doesn't suffice in source dists. 
 
$(SRCDIR)/pikecode.h: \ 
  $(SRCDIR)/code/ia32.h \ 
  $(SRCDIR)/code/sparc.h \ 
  $(SRCDIR)/code/ppc32.h \ 
  $(SRCDIR)/code/computedgoto.h \ 
  $(SRCDIR)/code/bytecode.h 
        touch $(SRCDIR)/pikecode.h 
 
$(SRCDIR)/pikecode.c: \ 
  $(SRCDIR)/code/ia32.c \ 
  $(SRCDIR)/code/sparc.c \ 
  $(SRCDIR)/code/ppc32.c \ 
  $(SRCDIR)/code/computedgoto.c \ 
  $(SRCDIR)/code/bytecode.c 
        touch $(SRCDIR)/pikecode.c 
 
@dependencies@