Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | testing for debian |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
552673fb542f6e5f1ebc1632422e9f13 |
User & Date: | jmcclure@crunch 2014-05-30 16:34:59 |
Context
2014-05-30
| ||
17:00 | no error on existing dir check-in: 56fc79d6b4 user: jmcclure@crunch tags: trunk | |
16:34 | testing for debian check-in: 552673fb54 user: jmcclure@crunch tags: trunk | |
2014-05-29
| ||
21:34 | experimenting with debian build check-in: 4fc946e7bd user: jesse@mccluresk9.com tags: trunk | |
Changes
Changes to Makefile.
32 33 34 35 36 37 38 39 40 41 42 43 44 45 |
# @${CC} -c -o src/$@ $< ${CFLAGS} ${DEFS} install: ${PROG} ${MANPAGES} @install -Dm755 ${PROG} ${DESTDIR}${PREFIX}/bin/${PROG} @install -Dm755 src/${PROG}-gtk ${DESTDIR}${PREFIX}/bin/${PROG}-gtk @install -Dm644 ${PROG}.1 ${DESTDIR}${PREFIX}/share/man/man1/${PROG}.1 @install -Dm644 ${PROG}-help.1 ${DESTDIR}${PREFIX}/share/man/man1/${PROG}-help.1 @install -Dm644 share/config ${DESTDIR}${PREFIX}/share/${PROG}/config @install -Dm644 share/icon.png ${DESTDIR}${PREFIX}/share/pixmaps/${PROG}.png @install -Dm644 share/${PROG}.desktop ${DESTDIR}${PREFIX}/share/applications/${PROG}.desktop ${MANPAGES}: fex%.1: fex%-1.tex @latex2man $< $@ |
> |
32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 |
# @${CC} -c -o src/$@ $< ${CFLAGS} ${DEFS}
install: ${PROG} ${MANPAGES}
@install -Dm755 ${PROG} ${DESTDIR}${PREFIX}/bin/${PROG}
@install -Dm755 src/${PROG}-gtk ${DESTDIR}${PREFIX}/bin/${PROG}-gtk
@install -Dm644 ${PROG}.1 ${DESTDIR}${PREFIX}/share/man/man1/${PROG}.1
@install -Dm644 ${PROG}-help.1 ${DESTDIR}${PREFIX}/share/man/man1/${PROG}-help.1
@mkdir ${DESTDIR}${PREFIX}/share/${PROG}
@install -Dm644 share/config ${DESTDIR}${PREFIX}/share/${PROG}/config
@install -Dm644 share/icon.png ${DESTDIR}${PREFIX}/share/pixmaps/${PROG}.png
@install -Dm644 share/${PROG}.desktop ${DESTDIR}${PREFIX}/share/applications/${PROG}.desktop
${MANPAGES}: fex%.1: fex%-1.tex
@latex2man $< $@
|