diff options
author | Lasse Collin <lasse.collin@tukaani.org> | 2020-03-11 19:38:08 +0200 |
---|---|---|
committer | Lasse Collin <lasse.collin@tukaani.org> | 2020-03-11 19:38:08 +0200 |
commit | 7c8f688bf7fccd65d396e0130cbf4ea5dff5c56f (patch) | |
tree | bdf94fdc451c36317a5fa6d23813520b4ed10169 | |
parent | DOS: Update instructions in dos/INSTALL.txt. (diff) | |
download | xz-7c8f688bf7fccd65d396e0130cbf4ea5dff5c56f.tar.xz |
DOS: Update dos/Makefile for DJGPP 2.05.
It doesn't need -fgnu89-inline like 2.04beta did.
-rw-r--r-- | dos/Makefile | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/dos/Makefile b/dos/Makefile index 75cb92f9..ff7a0fca 100644 --- a/dos/Makefile +++ b/dos/Makefile @@ -18,9 +18,7 @@ CPPFLAGS = CFLAGS = -g -Wall -Wextra -Wfatal-errors -march=i386 -mtune=i686 -O2 LDFLAGS = -lemu -# NOTE: -fgnu89-inline is needed on DJGPP 2.04 beta and GCC >= 4.3.0 -# because time.h uses GNU-style "extern inline". -ALL_CFLAGS = -std=gnu99 -fgnu89-inline +ALL_CFLAGS = -std=gnu99 ALL_CPPFLAGS = \ -I. \ |