source: trunk/ETSI-Testsuites/ETSI_auto_IOT/adapter/src/Dispatcher/Makefile

Last change on this file was 22, checked in by rings, 14 years ago
  • Property svn:executable set to *
File size: 439 bytes
RevLine 
[22]1
2CC=             g++
3CPPFLAGS=       -g -I. -I.. -I/sw/include -DDISPATCH_DEBUG
4LDFLAGS=        -L/sw/lib -lboost_thread
5
6BIN=            test
7SOURCES=        tmp/test.cpp \
8                DispatchInfo.cpp \
9                $(wildcard *Dispatcher.cpp) \
10                $(wildcard *Dissector.cpp) \
11                $(wildcard *Factory.cpp) \
12                $(wildcard ../Logger/*.cpp)
13
14OBJECTS=        $(SOURCES:.cpp=.o)
15
16all:            $(BIN)
17
18.cpp.o:
19        $(CC) $(CPPFLAGS) -c $< -o $@
20
21test:   ${OBJECTS}
22        $(CC) $(LDFLAGS) -o $@ $^
23
24clean:
25        rm *.o tmp/*.o test
26
27
Note: See TracBrowser for help on using the repository browser.