This is a live mirror of the Perl 5 development currently hosted at
https://github.com/perl/perl5
https://perl5.git.perl.org
/
perl5.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
9e4509e
)
microperl: do not regenerate the perly.
author
Jarkko Hietaniemi
<jhi@iki.fi>
Tue, 21 May 2002 14:25:44 +0000
(14:25 +0000)
committer
Jarkko Hietaniemi
<jhi@iki.fi>
Tue, 21 May 2002 14:25:44 +0000
(14:25 +0000)
p4raw-id: //depot/perl@16722
Makefile.micro
patch
|
blob
|
blame
|
history
diff --git
a/Makefile.micro
b/Makefile.micro
index
ae9f48b
..
59b895e
100644
(file)
--- a/
Makefile.micro
+++ b/
Makefile.micro
@@
-34,9
+34,21
@@
clean:
distclean: clean
-rm -f uconfig.h
+# The microconfiguration.
+
uconfig.h: uconfig.sh config_h.SH
CONFIG_SH=uconfig.sh CONFIG_H=uconfig.h sh ./config_h.SH
+# Do not regenerate perly.c and perly.h.
+
+perly.c: perly.y
+ -@sh -c true
+
+perly.h: perly.y
+ -@sh -c true
+
+# The microperl objects.
+
uav$(_O): $(HE) av.c
$(CC) -c -o $@ $(CFLAGS) av.c