Create Makefile

This commit is contained in:
ESL 2024-07-27 17:15:30 -04:00
parent f345a26867
commit 6bade8e391

78
Makefile Normal file
View file

@ -0,0 +1,78 @@
CFLAGS = -O3 -DNDEBUG
LDFLAGS =
PREFIX = /usr/local
INSTALL = install -m 755 -s
UNINSTALL = rm -f
RM = rm -f
ARCH = unknown
ifneq ($(shell which clang),)
$(info clang is detected)
CC = clang
else
CC = gcc
endif
ifeq ($(OS),Windows_NT)
ifeq ($(PROCESSOR_ARCHITEW6432),AMD64)
ARCH = AMD64
else
ifeq ($(PROCESSOR_ARCHITECTURE),AMD64)
ARCH = AMD64
endif
ifeq ($(PROCESSOR_ARCHITECTURE),x86)
ARCH = IA32
endif
endif
else
UNAME_P := $(shell uname -p)
ifeq ($(UNAME_P),x86_64)
ARCH = AMD64
endif
ifneq ($(filter %86,$(UNAME_P)),)
ARCH = IA32
endif
ifneq ($(filter arm%,$(UNAME_P)),)
ARCH = ARM
endif
endif
ifeq ($(ARCH),AMD64)
$(info x86_64 architecture is detected)
CFLAGS += -D NAN_BOXING
endif
.PHONY: all clean install uninstall
exe = ./skint
sources = s.c \
k.c \
i.c \
n.c \
t.c
includes = i.h \
n.h \
s.h
objects = $(sources:%.c=%.o)
all: $(exe)
clean:
$(RM) $(objects) $(exe)
install:
$(INSTALL) $(exe) $(PREFIX)/bin
uninstall:
$(UNINSTALL) $(exe) $(PREFIX)/bin
$(exe): $(objects)
$(CC) $(LDFLAGS) $(CFLAGS) -o $@ $(objects) -lm
$(objects): %.o: %.c
$(CC) $(CFLAGS) -c -o $@ $<
$(objects): $(includes)