-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
58 lines (47 loc) · 1.75 KB
/
Makefile
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
# Package: gtreesize
# Author: Frank Duckhorn
#
# Copyright (c) 2013 Frank Duckhorn
#
# gtreesize is free software: you can redistribute it and/or modify it under the
# terms of the GNU General Public License as published by the Free
# Software Foundation, either version 2 of the License, or (at your option)
# any later version.
#
# The above copyright notice and this permission notice shall be included in
# all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
# THE SOFTWARE.
VFLAGS=--pkg gtk+-3.0 --pkg posix
CFLAGS=-Wall -Wno-unused -c `pkg-config --cflags gtk+-3.0` -fPIC
LFLAGS=`pkg-config --libs gtk+-3.0` -rdynamic
ifeq ($(MAKECMDGOALS),DEBUG)
VFLAGS+=-D DEBUG
CFLAGS+=-g
else
CFLAGS+=-O2
endif
all: gtreesize
DEBUG: gtreesize
clean:
rm -f gtreesize *.c *.o
install:
install -D gtreesize $(DESTDIR)/usr/bin/gtreesize
uninstall:
rm -f $(DESTDIR)/usr/bin/gtreesize
gtreesize: gtreesize.o resources.o Makefile
gcc $(LFLAGS) gtreesize.o resources.o -o gtreesize
gtreesize.o: gtreesize.c Makefile
gcc $(CFLAGS) gtreesize.c -o gtreesize.o
resources.o: resources.c Makefile
gcc $(CFLAGS) resources.c -o resources.o
gtreesize.c: gtreesize.vala Makefile
valac $(VFLAGS) -C gtreesize.vala
resources.c: resources.gresource.xml gtreesize.xml
glib-compile-resources --generate-source resources.gresource.xml