/[cvs]/stack/Makefile
ViewVC logotype

Log of /stack/Makefile

Parent Directory Parent Directory | Revision Log Revision Log


Links to HEAD: (view) (annotate)
Sticky Tag:

Revision 1.18 - (view) (annotate) - [select for diffs]
Thu Feb 19 15:35:38 2004 UTC (20 years, 2 months ago) by masse
Branch: MAIN
CVS Tags: HEAD
Changes since 1.17: +6 -3 lines
Diff to previous 1.17
Extracted garbage collector to gc.c


Revision 1.17 - (view) (annotate) - [select for diffs]
Thu Aug 7 07:11:36 2003 UTC (20 years, 8 months ago) by masse
Branch: MAIN
Changes since 1.16: +3 -3 lines
Diff to previous 1.16
Makefile, fib.st, fib2.st, fac.st:
Changed to higher test values.


Revision 1.16 - (view) (annotate) - [select for diffs]
Tue Aug 5 09:09:51 2003 UTC (20 years, 8 months ago) by masse
Branch: MAIN
Changes since 1.15: +1 -1 lines
Diff to previous 1.15
(mangle) Moved from "stack.c" to "symbols.c".
Makefile: Added tail recursion optimization.


Revision 1.15 - (view) (annotate) - [select for diffs]
Mon Aug 4 11:22:02 2003 UTC (20 years, 8 months ago) by masse
Branch: MAIN
Changes since 1.14: +6 -3 lines
Diff to previous 1.14
(stack.c) Cleaning up.


Revision 1.14 - (view) (annotate) - [select for diffs]
Thu Mar 28 16:58:59 2002 UTC (22 years, 1 month ago) by masse
Branch: MAIN
Changes since 1.13: +1 -0 lines
Diff to previous 1.13
(check): Added fac.st to the test scripts.


Revision 1.13 - (view) (annotate) - [select for diffs]
Wed Mar 20 05:20:19 2002 UTC (22 years, 1 month ago) by teddy
Branch: MAIN
Changes since 1.12: +6 -2 lines
Diff to previous 1.12
Makefile (check): Also check that fib2.st returns correct result and
		  that printing of circular lists is correct.
(clean): Also remove "gmon.out".


Revision 1.12 - (view) (annotate) - [select for diffs]
Sun Mar 17 12:44:02 2002 UTC (22 years, 1 month ago) by teddy
Branch: MAIN
Changes since 1.11: +20 -8 lines
Diff to previous 1.11
Makefile (srcdir): New variable; used throughout.
(CFLAGS): Use profiling and coverage testing by default.
(stack): Put CFLAGS last.  This target also creates coverage object files.
(TAGS): Don't traverse CVS directory.
(gcov): Create "stack.c.gcov".
(stack.c.gcov): Create coverage code listing file.
(stack.da): Make "check" (run the program) to create profile output file.


Revision 1.11 - (view) (annotate) - [select for diffs]
Tue Mar 12 22:03:21 2002 UTC (22 years, 1 month ago) by masse
Branch: MAIN
Changes since 1.10: +3 -0 lines
Diff to previous 1.10
Makefile (LDFLAGS): Include commented-out alternate setting.
stack.c (new_val): New values are integers.
(push_val): Check malloc return value.
(copy_val): Don't protect new_val.


Revision 1.10 - (view) (annotate) - [select for diffs]
Sun Mar 10 13:26:44 2002 UTC (22 years, 1 month ago) by teddy
Branch: MAIN
Changes since 1.9: +3 -2 lines
Diff to previous 1.9
.cvsignore: Ignore all gcov-related files.
Makefile (CFLAGS): Do not include any gprof or gcov flags by default.
(stack): Moved "-pg" to the alternate CFLAGS line.
(check): Changed to 6765.
fib.st: Increased to "20"; it's faster now.


Revision 1.9 - (view) (annotate) - [select for diffs]
Sun Mar 10 08:48:56 2002 UTC (22 years, 1 month ago) by teddy
Branch: MAIN
Changes since 1.8: +1 -1 lines
Diff to previous 1.8
Makefile (check): Match change in "fib.st".
.cvsignore: Ignore gmon.out (gperf data file).


Revision 1.8 - (view) (annotate) - [select for diffs]
Sun Mar 10 08:30:43 2002 UTC (22 years, 1 month ago) by masse
Branch: MAIN
Changes since 1.7: +1 -1 lines
Diff to previous 1.7
stack.c (new_val): Set gc_garb flag.
(gc_mark): Removed check if val is NULL.
(gc_init): Various optimizations.
fib.st: Changed to calculate "15 fib;".


Revision 1.7 - (view) (annotate) - [select for diffs]
Sun Mar 10 07:55:13 2002 UTC (22 years, 1 month ago) by teddy
Branch: MAIN
Changes since 1.6: +1 -1 lines
Diff to previous 1.6
Makefile: Compile with "-pg" for profiling.
stack.c: Some optimizing:
(init_env): Increased gc_limit.
(toss, new_val): Don't run GC.
(gc_mark): Declare inline.
(gc_maybe): New function, all callers of gc_init calls this one instead.
(eval): Call gc_maybe.


Revision 1.6 - (view) (annotate) - [select for diffs]
Sun Mar 10 06:00:01 2002 UTC (22 years, 1 month ago) by teddy
Branch: MAIN
Changes since 1.5: +4 -1 lines
Diff to previous 1.5
.cvsignore: Ignore mtrace.log and the TAGS file.
Makefile (TAGS): New target.
(all): Also make TAGS.


Revision 1.5 - (view) (annotate) - [select for diffs]
Thu Mar 7 03:28:29 2002 UTC (22 years, 1 month ago) by teddy
Branch: MAIN
Changes since 1.4: +36 -1 lines
Diff to previous 1.4
GPL stuff:
stack.c, stack.h, Makefile: Added notices
stack.c (copying, warranty): New functions.
stack.h (copying, warranty): - '' -

Other stuff:
Makefile (stack): New explicit rule to depend on "stack.h" too.
(mtrace): Depend on "stack", not "all".
(check): New target.
stack.c (main): Don't return error on EOF.
(beep, wait): New functions.
stack.h (beep, wait): - '' -


Revision 1.4 - (view) (annotate) - [select for diffs]
Thu Feb 14 22:44:49 2002 UTC (22 years, 2 months ago) by masse
Branch: MAIN
Changes since 1.3: +4 -0 lines
Diff to previous 1.3
(Makefile) Added target to trace memory leaks.
(push_int, push_cstring, pack, read, quit) Memory leaks patched.


Revision 1.3 - (view) (annotate) - [select for diffs]
Fri Feb 8 01:31:07 2002 UTC (22 years, 2 months ago) by teddy
Branch: MAIN
Changes since 1.2: +2 -2 lines
Diff to previous 1.2
CFLAGS: Removed "-rdynamic".
LDFLAGS: Added "-Xlinker --export-dynamic"; Replaces "-rdynamic".
         Also, added "-lmcheck" for malloc debugging;
         *Note Heap Consistency Checking:(libc)Heap Consistency Checking.


Revision 1.2 - (view) (annotate) - [select for diffs]
Sat Feb 2 22:04:42 2002 UTC (22 years, 2 months ago) by teddy
Branch: MAIN
Changes since 1.1: +2 -1 lines
Diff to previous 1.1
Use correct syntax.


Revision 1.1 - (view) (annotate) - [select for diffs]
Sat Feb 2 22:03:15 2002 UTC (22 years, 2 months ago) by teddy
Branch: MAIN
Added a Makefile.


This form allows you to request diffs between any two revisions of this file. For each of the two "sides" of the diff, select a symbolic revision name using the selection box, or choose 'Use Text Field' and enter a numeric revision.

  Diffs between and
  Type of Diff should be a

Sort log by:

root@recompile.se
ViewVC Help
Powered by ViewVC 1.1.26