From 9f93facf36146013a40040ad910d9e467b3f1681 Mon Sep 17 00:00:00 2001 From: jozan Date: Fri, 27 Nov 2020 21:58:23 +0000 Subject: Completed man page FossilOrigin-Name: a94793605a8a1faef6be0c11bdad80c3c915644aa4d442fcac4ba37d7f62baee --- Makefile | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 21950b4..737127c 100644 --- a/Makefile +++ b/Makefile @@ -11,7 +11,7 @@ # ======================== # # unixize: Makefile -# 2020-11-02 21:43 +# Fri Nov 27 22:53:29 CET 2020 # Joe # # GNU Makefile @@ -19,18 +19,18 @@ .DEFAULT_GOAL := all SHELL := /bin/sh -DESTDIR = -SRCS_DIR = src/ -OBJS_DIR = obj/ -MAN_DIR = man/ +DESTDIR := +SRCS_DIR := src/ +OBJS_DIR := obj/ +MAN_DIR := man/ -CC := cc -CFLAGS = -std=c89 +CC ?= cc +CFLAGS += -std=c89 CFLAGS += -Wall CFLAGS += -Wextra CFLAGS += -Werror CFLAGS += -pedantic -CFLAGS += -march=ivybridge -O2 -pipe +CFLAGS += -march=native -O2 -pipe MKDIR := mkdir -p RM := rm -f @@ -38,7 +38,7 @@ INSTALL := install GZIP := gzip GUNZIP := gunzip -SRCS_NAME = c_lfiles +SRCS_NAME := c_lfiles SRCS_NAME += c_opts SRCS_NAME += c_subst SRCS_NAME += c_unixize -- cgit v1.2.3