| Newsgroups |
perl.cvs.mod_parrot |
| Message-ID |
<[email protected]> |
cvsuser 02/09/12 17:15:23
Modified: . Makefile
Log:
I'm an idiot. I put the line to compile libparrot.so under make install
instead of make all. This fixes that.
Revision Changes Path
1.11 +2 -2 mod_parrot/Makefile
Index: Makefile
===================================================================
RCS file: /cvs/public/mod_parrot/Makefile,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -w -r1.10 -r1.11
--- Makefile 10 Sep 2002 20:16:58 -0000 1.10
+++ Makefile 13 Sep 2002 00:15:23 -0000 1.11
@@ -9,10 +9,10 @@
all: mod_parrot.so
mod_parrot.so: mod_parrot.c
+ (cd $(PARROT_DIR); perl Configure.pl --ccflags="`perl -MConfig -e 'print $$Config{ccflags}'` -I$(MODPARROT_DIR) -I$(APACHEDIR)/include" --libs="`perl -MConfig -e 'print $$Config{libs}'` -L$(MODPARROT_DIR)"; make shared)
$(APACHEDIR)/bin/apxs -Wall -I $(PARROT_DIR)/include -c -n parrot mod_parrot.c -L$(PARROT_LIB_DIR) -lparrot
install: mod_parrot.so
- (cd $(PARROT_DIR); perl Configure.pl --ccflags="`perl -MConfig -e 'print $$Config{ccflags}'` -I$(MODPARROT_DIR) -I$(APACHEDIR)/include" --libs="`perl -MConfig -e 'print $$Config{libs}'` -L$(MODPARROT_DIR)"; make shared)
$(APACHEDIR)/bin/apxs -i -a -n parrot mod_parrot.so
test:
@@ -30,7 +30,7 @@
perl -pi -e 's/(\s+)printf\(/$1modparrot_printf(/g' $(PARROT_DIR)/core_ops.c
clean:
- rm *.o *.so
+ rm -f *.o *.so *.pbc
demo: eg/demo.pasm eg/demo2.pasm
$(ASM) eg/demo.pasm > eg/demo.pbc