blob: 459e5d64a82e40a7ce6755d64e2775bd355bb409 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
--- ./Makefile.orig
+++ ./Makefile
@@ -7,7 +7,7 @@
VERSION=$(shell grep package_version src/version.h | cut -f2)
compile:
- cd src && $(MAKE) -$(MAKEFLAGS)
+ cd src && $(MAKE)
install: compile
./install.sh $(BINDIR)
@@ -16,7 +16,7 @@
./uninstall.sh $(BINDIR)
clean:
- cd src && $(MAKE) -$(MAKEFLAGS) clean
+ cd src && $(MAKE) clean
package: compile clean
./package.sh
--- ./src/Makefile.orig
+++ ./src/Makefile
@@ -37,15 +37,15 @@
# Use the following only on GNU/Linux and only if you need ps listing like "smsd: MAINPROCESS" and "smsd: GSM1"
# CFLAGS += -D USE_LINUX_PS_TRICK
-all: smsd
-
-smsd: smsd.c extras.o locking.o cfgfile.o logging.o alarm.o smsd_cfg.o charset.o stats.o blacklist.o whitelist.o modeminit.o pdu.o
-
ifneq (,$(findstring SOLARIS,$(CFLAGS)))
ifeq (,$(findstring DISABLE_INET_SOCKET,$(CFLAGS)))
override LFLAGS += -lsocket -lnsl
endif
endif
+
+all: smsd
+
+smsd: smsd.c extras.o locking.o cfgfile.o logging.o alarm.o smsd_cfg.o charset.o stats.o blacklist.o whitelist.o modeminit.o pdu.o
ifneq (,$(findstring NOSTATS,$(CFLAGS)))
$(CC) $(CFLAGS) -o $@ $^ $(LFLAGS)
|