blob: 715cf100a0c3ba98181916c1adb2746fbb332a8c (
plain) (
blame)
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
|
--- Makefile
+++ Makefile
@@ -21,6 +21,8 @@
include Makeconf
+all: solib
+
help:
@echo
@echo "The following targets are available:"
@@ -34,20 +36,20 @@
lib:
make -C src/ lib
solib:
- make -C src/ solib
+ gmake -C src/ solib
test: lib
make -C test/
clean:
rm -f libqrupdate.a libqrupdate.so
- make -C src/ clean
- make -C test/ clean
+ gmake -C src/ clean
+ gmake -C test/ clean
install:
- make -C src/ install
+ gmake -C src/ install
install-shlib:
- make -C src/ install-shlib
+ gmake -C src/ install-shlib
install-staticlib:
- make -C src/ install-staticlib
+ gmake -C src/ install-staticlib
|