From 11bac28c2ad21009cf5170e5fbc09a2578dbbdd2 Mon Sep 17 00:00:00 2001 From: jozan Date: Mon, 2 Nov 2020 19:51:06 +0000 Subject: First commit FossilOrigin-Name: 1962365689fbebb54f6d6ead6490c2c8e73682b7ea7e65ca49d94b619b191b7f --- Makefile | 41 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 Makefile (limited to 'Makefile') diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..9bd96d5 --- /dev/null +++ b/Makefile @@ -0,0 +1,41 @@ +################################################################################ +#* ===== ===============*# +#* File : Makefile ====== ================*# +#* Author : Joe ====== ================*# +#* Date : 2020-11-02 ====== ==== ==== ==*# +#* Info : GNU Makefile ====== === == = =*# +#* ====== === = == =*# +#* = === === = == ====*# +#* = === === = == = =*# +#* == ===== ==== ==*# +################################################################################ + +default: msan + +SHELL := /bin/sh + +DESTDIR = /usr/local +SRCS_DIR = src/ +OBJS_DIR = obj/ + +CC = cc +CFLAGS = -std=c89 +CFLAGS += -Wall +CFLAGS += -Wextra +CFLAGS += -Werror +CFLAGS += -pedantic + +RM = rm -f +MKDIR = mkdir -p + +SRCS_NAME = c_unixize + +SRCS = $(addprefix ${SRCS_DIR}, $(addsuffix .c, ${SRCS_NAME})) +INCS = $(addprefix ${SRCS_DIR}, $(addsuffix .h, ${SRCS_NAME})) +OBJS = $(patsubst ${SRCS_DIR}%.c, ${OBJS_DIR}%.c.o, ${SRCS}) + +TARGET = unixize + +clean: + ${RM} ${OBJS_DIR} + ${RM} ${TARGET} -- cgit v1.2.3