summaryrefslogtreecommitdiff
path: root/comms/smstools3/files/patch-Makefile
diff options
context:
space:
mode:
authorMartin Matuska <mm@FreeBSD.org>2008-05-18 09:23:03 +0000
committerMartin Matuska <mm@FreeBSD.org>2008-05-18 09:23:03 +0000
commita64073f3fa7989d2bdc95816ba410ec8250c9a30 (patch)
treee40fdb5f996ce38f2080f4b2df55e9a602fa12ed /comms/smstools3/files/patch-Makefile
parentFix build with the latest uim. (diff)
The SMS Server Tools 3 is a SMS Gateway software which can send and receive
short messages through GSM modems and mobile phones. This is the enhanced version 3.x maintained by Mr. Keijo "Keke" Kasvi. WWW: http://smstools3.kekekasvi.com
Diffstat (limited to 'comms/smstools3/files/patch-Makefile')
-rw-r--r--comms/smstools3/files/patch-Makefile28
1 files changed, 28 insertions, 0 deletions
diff --git a/comms/smstools3/files/patch-Makefile b/comms/smstools3/files/patch-Makefile
new file mode 100644
index 000000000000..4a06161c0298
--- /dev/null
+++ b/comms/smstools3/files/patch-Makefile
@@ -0,0 +1,28 @@
+--- Makefile.orig 2007-04-22 13:42:22.000000000 +0200
++++ Makefile 2008-05-17 14:45:59.000000000 +0200
+@@ -6,17 +6,17 @@
+
+ VERSION=$(shell grep package_version src/version.h | cut -f2)
+
+-compile:
+- cd src && $(MAKE) -$(MAKEFLAGS)
++all:
++ cd src && $(MAKE) $(MAKEFLAGS)
+
+-install: compile
+- ./install.sh $(BINDIR)
++install:
++ $(SH) ./install.sh $(BINDIR)
+
+ uninstall:
+- ./uninstall.sh $(BINDIR)
++ $(SH) ./uninstall.sh $(BINDIR)
+
+ clean:
+- cd src && $(MAKE) -$(MAKEFLAGS) clean
++ cd src && $(MAKE) $(MAKEFLAGS) clean
+
+-package: compile clean
+- ./package.sh
++package: clean
++ $(SH) ./package.sh