Changes between Version 3 and Version 4 of Attic/Building/BuildSystem
- Timestamp:
- 10/06/06 08:28:25 (7 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Attic/Building/BuildSystem
v3 v4 489 489 %.o : %.c 490 490 $(RM) $@ 491 $(CC) $(CC_OPTS) -c $ <-o $@491 $(CC) $(CC_OPTS) -c $< -o $@ 492 492 }}} 493 493 … … 513 513 Every program's options are are held in a 514 514 {{{make}}} variables called 515 {{{ <prog>_OPTS}}}. the516 {{{ <prog>_OPTS}}} variables are515 {{{<prog>_OPTS}}}. the 516 {{{<prog>_OPTS}}} variables are 517 517 defined in {{{mk/opts.mk}}}. Almost all of them 518 518 are defined like this: … … 746 746 {{{ 747 747 %.$(way_)o : %.lhs 748 $(HC) $(HC_OPTS) $ <-o $@748 $(HC) $(HC_OPTS) $< -o $@ 749 749 }}} 750 750
