|
Last change
on this file since 118 was 94, checked in by zap, 23 years ago |
|
This is the start of work on making EMX C runtime EMX-independent ;-)
The first signs of a GNU Make-based build system.
Fixed a lot of .s files to comply with new GAS syntax.
Added a lot of submakefiles for every sub-library.
Replaced EM's getopt.h with the one from libiberty (which supports
getopt_long). The old getopt.h has moved to include/emx, so if
some tool needs it (and you don't want to fix it to use the new getopt),
replace #include <getopt.h> with #include <emx/getopt.h>. Did so in
most EMX tools.
|
-
Property cvs2svn:cvs-rev
set to
1.1
-
Property svn:eol-style
set to
native
-
Property svn:executable
set to
*
-
Property svn:keywords
set to
Author Date Id Revision
|
|
File size:
373 bytes
|
| Line | |
|---|
| 1 | # This submakefile is included from mk*.smak submakefiles to clean up local
|
|---|
| 2 | # variables after the target has been defined.
|
|---|
| 3 |
|
|---|
| 4 | # Clear local variables so that we don't incidentally
|
|---|
| 5 | # get a wrong value in a different module
|
|---|
| 6 | .OBJS :=
|
|---|
| 7 | .DIRS :=
|
|---|
| 8 | .TARG :=
|
|---|
| 9 |
|
|---|
| 10 | # Clear all target-specific variables
|
|---|
| 11 | ifndef .TKEEP
|
|---|
| 12 | .TARGET :=
|
|---|
| 13 | .TKIND :=
|
|---|
| 14 | .TSRC :=
|
|---|
| 15 | .TLDF :=
|
|---|
| 16 | .TCF :=
|
|---|
| 17 | .TDEP :=
|
|---|
| 18 | endif
|
|---|
| 19 |
|
|---|
| 20 | .TKEEP :=
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.