diff options
author | 2009-07-10 21:24:37 -0400 | |
---|---|---|
committer | 2009-07-10 21:24:37 -0400 | |
commit | f0667db7c9dc5160ce7b3188544766ac6ee63618 (patch) | |
tree | d384931a0e51ae584d795e6b973ff6677bed69c1 /src/Makefile | |
parent | e4b4d124e52ec85799f8a581f3bf968ceb431cdc (diff) | |
download | textadept-f0667db7c9dc5160ce7b3188544766ac6ee63618.tar.gz textadept-f0667db7c9dc5160ce7b3188544766ac6ee63618.zip |
Compile as C99.
Diffstat (limited to 'src/Makefile')
-rw-r--r-- | src/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Makefile b/src/Makefile index e7680839..07adba53 100644 --- a/src/Makefile +++ b/src/Makefile @@ -22,7 +22,7 @@ LUA_OBJS = lapi.o lcode.o ldebug.o ldo.o ldump.o lfunc.o lgc.o llex.o \ all: textadept .c.o: - gcc $(GTKFLAGS) $(INCLUDEDIRS) $(CXXFLAGS) -c $< -o $@ + gcc -std=c99 $(GTKFLAGS) $(INCLUDEDIRS) $(CXXFLAGS) -c $< -o $@ $(LUA_OBJS): lua/src/*.c gcc $(INCLUDEDIRS) -DLUA_USE_LINUX -c lua/src/*.c gcocoadialog.o: gcocoadialog/gcocoadialog.c |