about summary refs log tree commit diff stats
path: root/000organization.cc
diff options
context:
space:
mode:
Diffstat (limited to '000organization.cc')
0 files changed, 0 insertions, 0 deletions
d49488fd8aeb1c7e6053ea7f26f6bfd'>^
4b65986
b323713 ^
4b65986
5886a9a ^

2317717 ^
4b65986

b7c8e20 ^
5886a9a ^



4b65986
294d324 ^
3eaf180 ^
a03b4d8 ^
71f6dcd ^
f4171a4 ^
1eef040 ^
f4171a4 ^
71f6dcd ^
abbca62 ^
e42df56 ^
041206a ^




69ccac2 ^
71f6dcd ^
c24d083 ^
71f6dcd ^
3e09c53 ^
bd100fd ^

4b65986
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
           
 


                    
            
             
 
                       
          

             
               

                  
             



                                        
 
                         
 
                                                  
 
                                                  
                                                                  
                                                                
 
              
                                        




                                                                
                                                       
 
                                                     
 
                             

                                            
                      
# $xxxterm$

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

PROG=xxxterm
MAN=xxxterm.1

SRCS= xxxterm.c marco.c
COPT+= -O2
DEBUG= -ggdb3
LDADD= -lutil
LIBS+= gtk+-2.0
LIBS+= webkit-1.0
LIBS+= libsoup-2.4
LIBS+= gnutls
GTK_CFLAGS!= pkg-config --cflags $(LIBS)
GTK_LDFLAGS!= pkg-config --libs $(LIBS)
CFLAGS+= $(GTK_CFLAGS) -Wall -pthread
LDFLAGS+= $(GTK_LDFLAGS) -pthread

MANDIR= ${PREFIX}/man/man

CLEANFILES += ${.CURDIR}/javascript.h xxxterm.cat1

${.CURDIR}/javascript.h: hinting.js input-focus.js
	perl ${.CURDIR}/js-merge-helper.pl ${.CURDIR}/hinting.js \
	    ${.CURDIR}/input-focus.js >  ${.CURDIR}/javascript.h

beforeinstall:
	mkdir -p ${PREFIX}/share/xxxterm
	cp ${.CURDIR}/xxxtermicon16.png ${PREFIX}/share/xxxterm
	cp ${.CURDIR}/xxxtermicon32.png ${PREFIX}/share/xxxterm
	cp ${.CURDIR}/xxxtermicon48.png ${PREFIX}/share/xxxterm
	cp ${.CURDIR}/xxxtermicon64.png ${PREFIX}/share/xxxterm
	cp ${.CURDIR}/xxxtermicon128.png ${PREFIX}/share/xxxterm
	cp ${.CURDIR}/style.css ${PREFIX}/share/xxxterm

${PROG} ${OBJS} beforedepend: ${.CURDIR}/javascript.h

release: xxxterm xxxterm.cat1
	@sh ${.CURDIR}/release.sh ${.CURDIR}

.include <bsd.prog.mk>