source: Evidence/Makefile@ 785

Last change on this file since 785 was 221, checked in by ogrimm, 14 years ago
Added Bridge server, History service separated from DColl
File size: 533 bytes
Line 
1CC=g++
2
3PROG1=Config
4PROG2=DColl
5PROG3=Alarm
6PROG4=Bridge
7PROG5=History
8
9CPPFLAGS += -I$(DIMDIR)/dim/
10LDLIBS += -lpthread $(DIMDIR)/linux/libdim.a
11
12all: $(PROG1) $(PROG2) $(PROG3) $(PROG4) $(PROG5)
13
14$(PROG1): $(PROG1).o Evidence.o
15
16$(PROG2): $(PROG2).o Evidence.o
17
18$(PROG3): $(PROG3).o Evidence.o
19
20$(PROG4): $(PROG4).o Evidence.o
21
22$(PROG5): $(PROG5).o Evidence.o
23
24clean:
25 @rm -f $(PROG1) $(PROG1).o
26 @rm -f $(PROG2) $(PROG2).o
27 @rm -f $(PROG3) $(PROG3).o
28 @rm -f $(PROG4) $(PROG4).o
29 @rm -f $(PROG5) $(PROG5).o
30 @rm -f Evidence.o
Note: See TracBrowser for help on using the repository browser.