]> Cypherpunks repositories - gostls13.git/commitdiff
Add eval and ogle to the build process so they can be kept up
authorAustin Clements <aclements@csail.mit.edu>
Fri, 25 Sep 2009 18:36:27 +0000 (11:36 -0700)
committerAustin Clements <aclements@csail.mit.edu>
Fri, 25 Sep 2009 18:36:27 +0000 (11:36 -0700)
to date.

R=rsc
APPROVED=rsc
DELTA=8  (6 added, 0 deleted, 2 changed)
OCL=35009
CL=35011

src/run.bash
usr/austin/ogle/Makefile

index 9ae1ece74277bf36d7f78075d8582ee537cce4e5..c8f5d0c082b25cf3f58dabfe51b47907131a9549 100755 (executable)
@@ -26,6 +26,7 @@ maketest() {
 
 maketest \
        pkg \
+       ../usr/austin/eval \
 
 # all of these are subtly different
 # from what maketest does.
@@ -49,6 +50,11 @@ time make
 time make test
 ) || exit $?
 
+(xcd ../usr/austin/ogle
+make clean
+time make ogle
+) || exit $?
+
 (xcd ../doc/progs
 time ./run
 ) || exit $?
index a169d063b5bf66a4d6e7e8407512c94df14f6fcc..df0bb2d32d43cc1901b315cc270e728fb6092c75 100644 (file)
@@ -20,8 +20,8 @@ GOFILES=\
 
 include $(GOROOT)/src/Make.pkg
 
-main.6: main.go
+main.$O: main.go package
        $(GC) -I_obj $<
 
-ogle: main.6 package
+ogle: main.$O
        $(LD) -L_obj -o $@ $<