Introduction
Introduction Statistics Contact Development Disclaimer Help
Makefile - sub - subscene.com subtitle search
git clone git://git.codemadness.org/sub
Log
Files
Refs
README
LICENSE
---
Makefile (468B)
---
1 PREFIX = /usr/local
2
3 BIN = sub
4 SCRIPTS = \
5 sub-dl \
6 sub-search
7
8 all: build
9
10 build: clean
11 $(CC) -c xml.c util.c sub.c ${CFLAGS}
12 $(CC) -o $(BIN) xml.o util.o sub.o ${LDFLAGS}
13
14 clean:
15 rm -f $(BIN) *.o
16
17 install: all
18 mkdir -p "${DESTDIR}${PREFIX}/bin"
19 cp -f ${BIN} ${SCRIPTS} "${DESTDIR}${PREFIX}/bin"
20 for f in $(BIN) $(SCRIPTS); do chmod 755 "${DESTDIR}${PREFIX}/bi…
21
22 uninstall:
23 for f in $(BIN) $(SCRIPTS); do rm -f "${DESTDIR}${PREFIX}/bin/$$…
You are viewing proxied material from codemadness.org. The copyright of proxied material belongs to its original authors. Any comments or complaints in relation to proxied material should be directed to the original authors of the content concerned. Please see the disclaimer for more details.