-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
executable file
·44 lines (34 loc) · 1.13 KB
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
include config.mk
SRC = src/library.cpp src/lisp.cpp src/main.cpp src/reader.cpp
OBJ = $(SRC:%.cpp=%.o)
all: options solisp
options:
@echo Solisp build options:
@echo "CFLAGS = ${CFLAGS}"
@echo "LDFLAGS = ${LDFLAGS}"
@echo "CC = ${CC}"
.cpp.o:
@echo CC $<
@${CC} -c ${CFLAGS} -o $@ $<
${OBJ}: config.mk
solisp: ${OBJ}
@echo LD $@
@${CC} -o $@ ${OBJ} ${LDFLAGS}
clean:
@echo cleaning
@rm -f solisp ${OBJ} ${LIBOBJ} solisp-${VERSION}.tar.gz
install: all
@echo installing executable file to ${DESTDIR}${PREFIX}/bin
@mkdir -p ${DESTDIR}${PREFIX}/bin
@cp -f solisp ${DESTDIR}${PREFIX}/bin
@chmod 755 ${DESTDIR}${PREFIX}/bin/solisp
@echo installing manual page to ${DESTDIR}${MANPREFIX}/man1
@mkdir -p ${DESTDIR}${MANPREFIX}/man1
@sed "s/VERSION/${VERSION}/g" < docs/solisp.1 > ${DESTDIR}${MANPREFIX}/man1/solisp.1
@chmod 644 ${DESTDIR}${MANPREFIX}/man1/solisp.1
uninstall:
@echo removing executable file from ${DESTDIR}${PREFIX}/bin
@rm -f ${DESTDIR}${PREFIX}/bin/solisp
@echo removing manual page from ${DESTDIR}${MANPREFIX}/man1
@rm -f ${DESTDIR}${MANPREFIX}/man1/solisp.1
.PHONY: all options clean dist install uninstall