mirror of
https://github.com/idris-lang/Idris2.git
synced 2024-12-19 17:21:59 +03:00
48dbc3251b
both 'make install' and 'idris2 --install*' should respect DESTDIR now
47 lines
688 B
Makefile
47 lines
688 B
Makefile
include ../../config.mk
|
|
|
|
TARGET = libidris2_refc
|
|
|
|
LIBTARGET = $(TARGET).a
|
|
|
|
SRCS := $(wildcard *.c)
|
|
OBJS = $(SRCS:.c=.o)
|
|
DEPS = $(OBJS:.o=.d)
|
|
|
|
CFLAGS += -O2
|
|
|
|
ifeq ($(OLD_WIN), 1)
|
|
CPPFLAGS += -D_OLD_WIN
|
|
endif
|
|
|
|
|
|
.PHONY: all
|
|
all: build
|
|
|
|
.PHONY: build
|
|
build: $(LIBTARGET)
|
|
|
|
$(LIBTARGET): $(OBJS)
|
|
$(AR) rc $@ $^
|
|
$(RANLIB) $@
|
|
|
|
-include $(DEPS)
|
|
|
|
%.d: %.c
|
|
@$(CPP) $(CPPFLAGS) $< -MM -MT $(@:.d=.o) >$@
|
|
|
|
|
|
.PHONY: clean
|
|
clean:
|
|
$(RM) $(OBJS) $(LIBTARGET)
|
|
|
|
.PHONY: cleandep
|
|
cleandep: clean
|
|
$(RM) $(DEPS)
|
|
|
|
|
|
.PHONY: install
|
|
install: build
|
|
mkdir -p ${DESTDIR}${PREFIX}/idris2-${IDRIS2_VERSION}/support/refc
|
|
install -m 644 $(LIBTARGET) *.h ${DESTDIR}${PREFIX}/idris2-${IDRIS2_VERSION}/support/refc
|