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 22:38:25 +0200 |
commit | ceba0d25e826bcdbf64bb4cb03385a2a66f8cbcb (patch) | |
tree | 116fc2cf07ace70bb4e19e1bbdd6eb1387e3df99 /dos/Makefile | |
parent | DOS: Update instructions in dos/INSTALL.txt. (diff) | |
download | xz-ceba0d25e826bcdbf64bb4cb03385a2a66f8cbcb.tar.xz |
DOS: Update dos/Makefile for DJGPP 2.05.
It doesn't need -fgnu89-inline like 2.04beta did.
Diffstat (limited to '')
-rw-r--r-- | dos/Makefile | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/dos/Makefile b/dos/Makefile index 0ddb43c5..e42bdfba 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. \ |