summaryrefslogtreecommitdiff
path: root/makefile
diff options
context:
space:
mode:
authorDaniel Jones <admin@danieljon.es>2020-04-26 19:32:00 +0930
committerDaniel Jones <admin@danieljon.es>2020-04-26 19:32:00 +0930
commit7c629cfed14a58b66715bba3e48846e64f861a6d (patch)
treea913c79263c296273b7b81ed7cac7169fb3fe68c /makefile
parent6ebd0776f5a058af3acce5b6bcfe94427b2555ab (diff)
downloadcsweeper-7c629cfed14a58b66715bba3e48846e64f861a6d.tar.gz
csweeper-7c629cfed14a58b66715bba3e48846e64f861a6d.zip
makefile: remove std=c99
Diffstat (limited to 'makefile')
-rw-r--r--makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/makefile b/makefile
index 609f4b2..089a80a 100644
--- a/makefile
+++ b/makefile
@@ -3,7 +3,7 @@ all: csweeper ncsweeper
csweeper: csweeper.c
cc -g -Wall -Wextra -std=c99 -o csweeper csweeper.c
ncsweeper: ncsweeper.c
- cc -g -Wall -Wextra -std=c99 -lncurses -o ncsweeper ncsweeper.c
+ cc -g -Wall -Wextra -lncurses -o ncsweeper ncsweeper.c
clean:
@rm -f csweeper ncsweeper
@rm -f *.o