diff options
author | Alan Coopersmith <alan.coopersmith@oracle.com> | 2024-01-10 17:26:28 -0800 |
---|---|---|
committer | Alan Coopersmith <alan.coopersmith@oracle.com> | 2024-01-10 18:13:30 -0800 |
commit | f7d999c336adc1f503a58c1859b6f0c48c03497b (patch) | |
tree | 23b1288fb8ab1c0912af2c23b25e7ea51afaff78 | |
parent | 17e977672f9a45bf94df5ec6a847133ee054838e (diff) |
Add X.Org's standard C warning flags to AM_CFLAGS
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
-rw-r--r-- | src/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Makefile.am b/src/Makefile.am index 52fdf9e..4b16ded 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -23,7 +23,7 @@ # -avoid-version prevents gratuitous .0.0.0 version numbers on the end # _ladir passes a dummy rpath to libtool so the thing will actually link # TODO: -nostdlib/-Bstatic/-lgcc platform magic, not installing the .a, etc. -AM_CFLAGS = @XORG_CFLAGS@ @DRI_CFLAGS@ +AM_CFLAGS = $(BASE_CFLAGS) $(XORG_CFLAGS) $(DRI_CFLAGS) savage_drv_la_LTLIBRARIES = savage_drv.la savage_drv_la_LDFLAGS = -module -avoid-version savage_drv_ladir = @moduledir@/drivers |