aboutsummaryrefslogtreecommitdiff
path: root/vendor/voclient/Makefile
blob: 9e7aa832f9bc280ea8078524198f3dd07a28bc41 (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
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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
#///////////////////////////////////////////////////////////////////////////////
#//
#//  Makefile for the VOTable Interface
#//
#///////////////////////////////////////////////////////////////////////////////

# primary dependencies

NAME       	 = VOClient
VERSION    	 = 1.0
PLATFORM  	:= $(shell uname -s)
PLMACH  	:= $(shell uname -m)
HERE      	:= $(shell /bin/pwd)
#BINDIR    	:= ./bin/
#LIBDIR    	:= ./lib/
#INCDIR    	:= ./include/
BINDIR    	:= ../../bin/
LIBDIR    	:= ../../lib/
INCDIR    	:= ../../lib/


# includes, flags and libraries
CC 	  	= gcc
CINCS  	  	= -I$(INCDIR) -I./
ifeq  ($(PLATFORM), "Darwin")
    ifeq  ($(PLATFORM), "x86_64")
        CARCH	= -m64 -mmacosx-version-min=10.5
    else
        CARCH	= -arch i386 -arch ppc -m32 -mmacosx-version-min=10.4
    endif
else
    CARCH	= 
endif

CFLAGS 		= -g -Wall $(CARCH) -D$(PLATFORM) $(CINCS) -L./
LIBS		= -lm -lc -lpthread


all:
	(cd common      ; make all  ; make install)
	(cd libsamp     ; make all  ; make install)
	(cd libvotable  ; make all  ; make install)
	(cd libvoclient ; make all  ; make install)
	(cd voapps      ; make all  ; make install)
	(cd libvo       ; make all  ; make install)
	cp voclient.jar voclientd bin/
	/bin/rm -rf bin/curl* lib/pkgconfig
	/bin/rm -rf lib/*.dylib lib/*.la lib/*.so

libs:
	(cd common      ; make libs)
	(cd libvotable  ; make libs)
	(cd libsamp     ; make libs)
	(cd libvoclient ; make libs)
	(cd voapps      ; make libs)
	(cd libvo       ; make libs)

apps:
	(cd common      ; make apps)
	(cd libvotable  ; make apps)
	(cd libsamp     ; make apps)
	(cd libvoclient ; make apps)
	(cd voapps      ; make apps)

examples:
	(cd common      ; make examples)
	(cd libvotable  ; make examples)
	(cd libsamp     ; make examples)
	(cd libvoclient ; make examples)
	(cd voapps      ; make examples)

install:
	(cd common      ; make install)
	(cd libvotable  ; make install)
	(cd libsamp     ; make install)
	(cd libvoclient ; make install)
	(cd voapps      ; make install)
	(cd libvo       ; make install)
	cp voclient.jar voclientd bin/
	/bin/rm -rf bin/curl* lib/pkgconfig
	/bin/rm -rf lib/*.dylib lib/*.la lib/*.so

clean:
	(cd common      ; make distclean)
	(cd libvotable  ; make clean)
	(cd libsamp     ; make clean)
	(cd libvoclient ; make clean)
	(cd voapps      ; make clean)
	(cd libvo       ; make clean)
	/bin/rm -rf voclient/lib/libvoclient.*
	/bin/rm -rf bin/* lib/* include/* *spool* */*spool* */*/*spool*
	/bin/rm -rf */config.log */*/config.log */*/*/config.log
	/bin/rm -rf */*.dylib



###############################################################################
# Leave this stuff alone.
###############################################################################

$(STATICLIB): $(SRCS:%.c=Static/%.o)
	/usr/bin/ar rv $@ $?
Static/%.o: %.c $(INCS)
	/usr/bin/gcc $(CINCS) $(CFLAGS) -c $< -o $@
Static:
	/bin/mkdir $@
	chmod 777 $@

$(SHAREDLIB): $(SRCS:%.c=Shared/%.o)
	/usr/bin/ld -shared -o $@ $? -lc -ldl
Shared/%.o: %.c $(INCS)
	/usr/bin/gcc $(CINCS) $(CFLAGS) -fpic -shared -c $< -o $@
Shared:
	/bin/mkdir $@
	chmod 777 $@