Added quantiling UDAFs
[com/gs-lite.git] / src / lib / gscplftaaux / Makefile
1 # ------------------------------------------------\r
2 #   Copyright 2014 AT&T Intellectual Property\r
3 #   Licensed under the Apache License, Version 2.0 (the "License");\r
4 #   you may not use this file except in compliance with the License.\r
5 #   You may obtain a copy of the License at\r
6 #\r
7 #     http://www.apache.org/licenses/LICENSE-2.0\r
8 #\r
9 #   Unless required by applicable law or agreed to in writing, software\r
10 #   distributed under the License is distributed on an "AS IS" BASIS,\r
11 #   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r
12 #   See the License for the specific language governing permissions and\r
13 #   limitations under the License.\r
14 # -------------------------------------------\r
15 \r
16 CC=gcc -g -O3  -fexpensive-optimizations -I ../gscpaux/acl/ -I ../gscpaux/ -I ../../../include/lfta/ -I ../../../include/\r
17 \r
18 SOURCE =  rts_string.c rts_byteswap.c rts_sample.c rts_udaf.c flip_udaf.c\r
19 \r
20 OBJECTS = $(SOURCE:.c=.o)\r
21 \r
22 INCDIR=../../../include\r
23 HFTA_DIR=$(INCDIR/hfta)\r
24 LFTA_DIR=$(INCDIR/lfta)\r
25 \r
26 all: libgscplftaaux.a\r
27         cp libgscplftaaux.a ../../../lib/ ; ranlib ../../../lib/libgscplftaaux.a\r
28 \r
29 libgscplftaaux.a: $(OBJECTS) Makefile \r
30         ar  rc libgscplftaaux.a $(OBJECTS) \r
31 \r
32 rts_string.c : $(LFTA_DIR/rts_external.h) $(INCDIR/gsconfig.h) $(INCDIR/gstypes.h)\r
33 \r
34 rts_byteswap.c : $(INCDIR/gsconfig.h) $(INCDIR/gstypes.h)\r
35 \r
36 rts_sample.c : $(INCDIR/gsconfig.h) $(INCDIR/gstypes.h) $(LFTA_DIR/rts_external.h)\r
37 \r
38 rts_udaf.c : $(LFTA_DIR/rts_udaf.h) $(INCDIR/gsconfig.h) $(INCDIR/gstypes.h) \r
39 \r
40 flip_udaf.c : $(LFTA_DIR/flip_udaf.h) $(INCDIR/gsconfig.h) $(INCDIR/gstypes.h) \r
41 \r
42 lpm.c : $(LFTA_DIR/rts_external.h) $(INCDIR/fta.h) $(INCDIR/gsconfig.h) $(INCDIR/gstypes.h)\r
43 \r
44 flip_udaf.c : $(LFTA_DIR/rts_udaf.h) $(INCDIR/gsconfig.h) $(INCDIR/gstypes.h)\r
45 \r
46 install: all\r
47 \r
48 clean:\r
49         rm -f *.o *.a core\r
50 \r