forked from freeeyes/geohash
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmakefile
More file actions
43 lines (35 loc) · 823 Bytes
/
makefile
File metadata and controls
43 lines (35 loc) · 823 Bytes
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
include makefile.define
default:all
PATS = ./GeoHash/geohash.o \
./GeoHash/mapinfo.o \
./GeoHash/posinfopool.o \
./GeoHash/areainfopool.o \
./GeoHash/ShareMemory.o \
./Http/soapC.o \
./Http/soapServer.o \
./Http/httppost.o \
./Http/stdsoap2.o \
./Http/json.o \
main.o
LIB_BASE_OBJS = geohash.o \
mapinfo.o \
posinfopool.o \
areainfopool.o \
ShareMemory.o \
soapC.o \
soapServer.o \
httppost.o \
stdsoap2.o \
json.o \
main.o
LIB_BASE = mapchinapos
all: mapchinapos
# ?????
all:$(LIB_BASE) makefile
$(LIB_BASE):$(PATS)
$(CC) -rdynamic -o $(LIB_BASE) $(LIB_BASE_OBJS) $(LIBS)
# ??
clean:
rm -rf *.o $(LIB_BASE) $(LIB_BASE_OBJS)
cl:
rm -rf *.o