mirror of
https://github.com/edwinb/Idris2-boot.git
synced 2024-11-23 20:22:34 +03:00
Remove Chicken CG deps from CI tests
This commit is contained in:
parent
5dfa853352
commit
3acd7a0805
@ -3,7 +3,7 @@ from haskell:8.2
|
||||
run apt-get update && apt-get install -y \
|
||||
clang lld-4.0 \
|
||||
curl wget \
|
||||
chicken-bin racket \
|
||||
racket gambc \
|
||||
libx11-dev uuid-dev \
|
||||
libncurses5-dev
|
||||
|
||||
|
@ -12,15 +12,17 @@ OBJS = $(SRCS:.c=.o)
|
||||
DEPS = $(OBJS:.o=.d)
|
||||
|
||||
|
||||
all: build
|
||||
|
||||
.PHONY: build
|
||||
|
||||
build : $(LIBTARGET) $(DYLIBTARGET)
|
||||
build: $(LIBTARGET) $(DYLIBTARGET)
|
||||
|
||||
$(LIBTARGET) : $(OBJS)
|
||||
$(LIBTARGET): $(OBJS)
|
||||
$(AR) rc $@ $^
|
||||
$(RANLIB) $@
|
||||
|
||||
$(DYLIBTARGET) : $(OBJS)
|
||||
$(DYLIBTARGET): $(OBJS)
|
||||
$(CC) -shared $(LDFLAGS) -o $@ $^
|
||||
|
||||
|
||||
@ -41,6 +43,6 @@ cleandep: clean
|
||||
|
||||
.PHONY: install
|
||||
|
||||
install: $(LIBTARGET) $(DYLIBTARGET)
|
||||
install: build
|
||||
mkdir -p ${PREFIX}/idris2-${IDRIS2_VERSION}/lib
|
||||
install $(LIBTARGET) $(DYLIBTARGET) ${PREFIX}/idris2-${IDRIS2_VERSION}/lib
|
||||
|
Loading…
Reference in New Issue
Block a user