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