diff options
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -2,7 +2,7 @@ PREFIX = /usr INCS = `pkg-config --cflags gtk+-2.0 vte` LIBS = `pkg-config --libs gtk+-2.0 vte` -CFLAGS = -ansi -pedantic -Wall -O3 ${INCS} +CFLAGS = -ansi -pedantic -Wall -O2 ${INCS} LDFLAGS = -s ${LIBS} VER = 0.7 CC = cc @@ -29,12 +29,12 @@ clean: dist: PKGBUILD @echo creating distributable tarball @mkdir T-${VER} - @cp -R src/ PKGBUILD T.desktop Makefile T-${VER} + @cp -R src/ T.desktop Makefile T-${VER} @tar cf T-${VER}.tar.bz2 T-${VER} @rm -rf T-${VER} install: all @echo installing executable file in ${DESTDIR}${PREFIX}/bin @install -D -m755 T ${DESTDIR}${PREFIX}/bin/T - @echo installing icon in ${DESTDIR}${PREFIX}/share/applications + @echo installing desktop file in ${DESTDIR}${PREFIX}/share/applications @install -D -m644 T.desktop ${DESTDIR}${PREFIX}/share/applications/T.desktop |