diff options
author | Samuel Fadel <samuelfadel@gmail.com> | 2014-06-07 14:15:23 -0300 |
---|---|---|
committer | Samuel Fadel <samuelfadel@gmail.com> | 2014-06-07 14:15:23 -0300 |
commit | 9cc25bdabe7e519e1645d8ae9234849f5c6780be (patch) | |
tree | 7487a3fb8660ec6a58c762f735e865cbb69c9f62 /Makefile | |
parent | a070dd2988908a307c4703e3290d656c1b3df3cb (diff) |
Removed PKGBUILD. Minor modifications to Makefile.
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 |