diff options
author | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2018-12-30 21:38:23 +0100 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2018-12-30 21:38:23 +0100 |
commit | 70ddda0f41b3b13a5a3b5179447712f7af8fb574 (patch) | |
tree | 1b2e10e735f1d3314aea45c18f4b6abac7f61ca0 /Makefile.am | |
parent | 31a3c83057fa5b563aa480e31ab975ceaed9abff (diff) | |
download | gnumach-70ddda0f41b3b13a5a3b5179447712f7af8fb574.tar.gz gnumach-70ddda0f41b3b13a5a3b5179447712f7af8fb574.tar.bz2 gnumach-70ddda0f41b3b13a5a3b5179447712f7af8fb574.zip |
Move -D__ASSEMBLY__ to general AM_CCASFLAGS
Since it is used not only by linux bits.
* linux/Makefrag.am (liblinux_a_CCASFLAGS): Remove -D__ASSEMBLY__
* Makefile.am (AM_CCASFLAGS): Add -D__ASSEMBLY__
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Makefile.am b/Makefile.am index 349e0d5c..11312a1e 100644 --- a/Makefile.am +++ b/Makefile.am @@ -54,6 +54,9 @@ AM_CPPFLAGS += \ AM_CFLAGS += \ -fno-builtin-log +AM_CCASFLAGS += \ + -D__ASSEMBLY__ + # Yes, this makes the eyes hurt. But perhaps someone will finally take care of # all that scruffy Mach code... Also see <http://savannah.gnu.org/task/?5726>. AM_CFLAGS += \ |