diff options
author | Aaron Ball <nullspoon@oper.io> | 2020-05-16 23:22:38 -0600 |
---|---|---|
committer | Aaron Ball <nullspoon@oper.io> | 2020-05-16 23:22:38 -0600 |
commit | a58cf9898424e773968533828441c24eec9d4e7a (patch) | |
tree | 1c9abd0f0d511bd4588b4029d0a739e08be3dbdf | |
parent | 78cfce9c1d5f88cd73b6b3b04fdadd33b35f405b (diff) | |
download | gitaccess-a58cf9898424e773968533828441c24eec9d4e7a.tar.gz gitaccess-a58cf9898424e773968533828441c24eec9d4e7a.tar.xz |
Add optimization level 2 to cc call
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1,4 +1,4 @@ -CCOPTS = --std=gnu99 -Wall -Werror +CCOPTS = --std=gnu99 -Wall -Werror -O2 all: cc $(CCOPTS) src/main.c -o gitaccess |