blob: 88e5aced51d1f0558dd14b4b7872781c1d35c29f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
# uswipl - dumbed-Down SWI-Prolog REPL
# See LICENSE file for copyright and license details.
.POSIX:
CFLAGS = -std=c99 -Wall -Wextra $(shell pkg-config --cflags swipl) -D_POSIX_C_SOURCE=200809L
LDFLAGS = $(shell pkg-config --libs swipl) -Wl,-rpath,$(shell pkg-config --variable=libdir swipl)
TARGET = uswipl
SRC = uswipl.c
all: $(TARGET)
$(TARGET): $(SRC)
$(CC) $(CFLAGS) -o $(TARGET) $(SRC) $(LDFLAGS)
clean:
rm -f $(TARGET)
.PHONY: all clean
|