aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorjozan <jozan@noemail.net>2020-11-12 22:35:55 +0000
committerjozan <jozan@noemail.net>2020-11-12 22:35:55 +0000
commit36894101c56dcaf6890a38f0f45a55fafc9128e3 (patch)
tree9fbacb73e016ba212d497f9ef9e948afd0617064 /Makefile
parentNew option to show what's untouched (diff)
downloadunixize-36894101c56dcaf6890a38f0f45a55fafc9128e3.tar.gz
unixize-36894101c56dcaf6890a38f0f45a55fafc9128e3.tar.bz2
unixize-36894101c56dcaf6890a38f0f45a55fafc9128e3.tar.xz
unixize-36894101c56dcaf6890a38f0f45a55fafc9128e3.tar.zst
unixize-36894101c56dcaf6890a38f0f45a55fafc9128e3.zip
Work to do
FossilOrigin-Name: cd493106b2cdf7568781e2c69a4742da4c91e85ab0cc4403a79580b4b4cb11ac
Diffstat (limited to '')
-rw-r--r--Makefile3
1 files changed, 3 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 5e3b63c..d92729f 100644
--- a/Makefile
+++ b/Makefile
@@ -52,6 +52,9 @@ ${OBJS_DIR}%.c.o: ${SRCS_DIR}%.c ${INCS} Makefile
${TARGET}: ${OBJS}
${CC} ${CFLAGS} -o ${TARGET} ${OBJS}
+opti: CFLAGS += -march=ivybridge -O2 -pipe
+opti: all
+
all: ${TARGET}
debug: CFLAGS += -g3