From 9cc25bdabe7e519e1645d8ae9234849f5c6780be Mon Sep 17 00:00:00 2001 From: Samuel Fadel Date: Sat, 7 Jun 2014 14:15:23 -0300 Subject: Removed PKGBUILD. Minor modifications to Makefile. --- Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 77effa2..6f1ad27 100644 --- a/Makefile +++ b/Makefile @@ -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 -- cgit v1.2.3