about summary refs log tree commit diff stats
path: root/tutorial/task4-initial.png
diff options
context:
space:
mode:
Diffstat (limited to 'tutorial/task4-initial.png')
0 files changed, 0 insertions, 0 deletions
6dd3e9fd590e841b737bf4d7'>^
3064c81 ^
77b17b2 ^
5b1ee64 ^


1132d68 ^
e06cc87 ^
34a8139 ^
1132d68 ^

1b7c992 ^

1132d68 ^



4b65986
b7c8e20 ^
5886a9a ^

24a6af8 ^
62ea09e ^
a91914c ^
68a74b3 ^
77b17b2 ^
68a74b3 ^

294d324 ^
3eaf180 ^
7d377d0 ^
71f6dcd ^
483a250 ^










71f6dcd ^
7d377d0 ^




abbca62 ^
0761681 ^
7fe5675 ^
77b17b2 ^
c869510 ^
1132d68 ^
22d5a6e ^
77b17b2 ^







0c240f7 ^
9479f49 ^

374f8c0 ^

71f6dcd ^
7d377d0 ^
71f6dcd ^
62ea09e ^
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80


                    

              
 
         
 
                                                                              
                                                                          


                                                                                
                                                                                                       
                         
             

                            

                 



                    
                  
             

                                        
                      
                        
                                           
                          
                                                  

      
                         
 
                                                                                        
 










                                            
 




                                                          
              
                                       
                                             
                                                  
                                                      
                                                                       
                                                                               







                                                                              
                                                                       

                                                                              

                                                                          
 
                                                    
 
                      
PREFIX?=/usr/local
BINDIR=${PREFIX}/bin

PROG=xombrero
MAN=xombrero.1

DEBUG= -g

SRCS= cookie.c inspector.c marco.c about.c whitelist.c settings.c inputfocus.c
SRCS+= history.c completion.c tldlist.c externaleditor.c unix.c xombrero.c
CFLAGS+= -O2 -Wall -Wno-format-extra-args -Wunused -Wextra -Wno-unused-parameter
CFLAGS+= -Wno-missing-field-initializers -Wno-sign-compare
CFLAGS+= -Wno-deprecated-declarations -Wfloat-equal ${DEBUG}
CFLAGS+= -DGTK_DISABLE_SINGLE_INCLUDES -DGDK_DISABLE_DEPRECATED -DGTK_DISABLE_DEPRECATED -DGSEAL_ENABLE
CFLAGS+= -I. -I${.CURDIR}
LDADD= -lutil
GTK_VERSION ?= gtk3
.if ${GTK_VERSION} == "gtk2"
LIBS+= gtk+-2.0
LIBS+= webkit-1.0
.else
LIBS+= gtk+-3.0
LIBS+= webkitgtk-3.0
.endif
LIBS+= libsoup-2.4
LIBS+= gnutls
GTK_CFLAGS!= pkg-config --cflags $(LIBS)
GTK_LDFLAGS!= pkg-config --libs $(LIBS)
CFLAGS+= $(GTK_CFLAGS)
LDFLAGS+= $(GTK_LDFLAGS)
BUILDVERSION != sh "${.CURDIR}/buildver.sh"
.if !${BUILDVERSION} == ""
CPPFLAGS+= -DXOMBRERO_BUILDSTR=\"$(BUILDVERSION)\"
.endif

MANDIR= ${PREFIX}/man/man

CLEANFILES += ${.CURDIR}/javascript.h javascript.h tooltip.h xombrero.cat1 xombrero.core

JSFILES += hinting.js
JSFILES += input-focus.js
JSFILES += autoscroll.js

.for _js in ${JSFILES}
JSCURDIR += ${.CURDIR}/${_js}
.endfor

javascript.h: ${JSFILES} js-merge-helper.pl
	perl ${.CURDIR}/js-merge-helper.pl \
		${JSCURDIR} > javascript.h

tooltip.h: ${MAN} ascii2txt.pl txt2tooltip.pl
	mandoc -Tascii ${.CURDIR}/${MAN} | \
		perl ${.CURDIR}/ascii2txt.pl | \
		perl ${.CURDIR}/txt2tooltip.pl > tooltip.h

beforeinstall:
	install -m 755 -d ${PREFIX}/bin
	install -m 755 -d ${PREFIX}/man/man1/
	install -m 755 -d ${PREFIX}/share/xombrero
	install -m 755 -d ${PREFIX}/share/applications
	install -m 644 $(.CURDIR)/xombrero.css ${PREFIX}/share/xombrero
	install -m 644 $(.CURDIR)/xombrero.desktop ${PREFIX}/share/applications
	install -m 644 ${.CURDIR}/xombreroicon.png ${PREFIX}/share/xombrero
	install -m 644 ${.CURDIR}/xombreroicon16.png ${PREFIX}/share/xombrero
	install -m 644 ${.CURDIR}/xombreroicon32.png ${PREFIX}/share/xombrero
	install -m 644 ${.CURDIR}/xombreroicon48.png ${PREFIX}/share/xombrero
	install -m 644 ${.CURDIR}/xombreroicon64.png ${PREFIX}/share/xombrero
	install -m 644 ${.CURDIR}/xombreroicon128.png ${PREFIX}/share/xombrero
	install -m 644 ${.CURDIR}/tld-rules ${PREFIX}/share/xombrero
	install -m 644 ${.CURDIR}/style.css ${PREFIX}/share/xombrero
	install -m 644 ${.CURDIR}/hsts-preload ${PREFIX}/share/xombrero
	install -m 644 ${.CURDIR}/user-agent-headers ${PREFIX}/share/xombrero
	install -m 644 ${.CURDIR}/http-accept-headers ${PREFIX}/share/xombrero
	install -m 644 ${.CURDIR}/torenabled.ico ${PREFIX}/share/xombrero
	install -m 644 ${.CURDIR}/tordisabled.ico ${PREFIX}/share/xombrero

${PROG} ${OBJS} beforedepend: javascript.h tooltip.h

.include <bsd.prog.mk>