skint/Makefile

82 lines
1.4 KiB
Makefile
Raw Normal View History

2024-07-27 23:15:30 +02:00
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
2024-07-28 16:21:54 +02:00
.PHONY: all clean realclean install uninstall
2024-07-27 23:15:30 +02:00
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:
2024-07-28 16:17:13 +02:00
$(RM) $(objects)
realclean:
2024-07-27 23:15:30 +02:00
$(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)