source: Evidence/Makefile@ 144

Last change on this file since 144 was 144, checked in by ogrimm, 15 years ago
Core system updates
File size: 348 bytes
Line 
1CC=g++
2
3PROG1=Config
4PROG2=DColl
5PROG3=Alarm
6
7CPPFLAGS += -I$(DIMDIR)/dim/
8LDLIBS += -lpthread $(DIMDIR)/linux/libdim.a
9
10all: $(PROG1) $(PROG2) $(PROG3)
11
12$(PROG1): $(PROG1).o Evidence.o
13
14$(PROG2): $(PROG2).o Evidence.o
15
16$(PROG3): $(PROG3).o Evidence.o
17
18clean:
19 @rm -f $(PROG1) $(PROG1).o
20 @rm -f $(PROG2) $(PROG2).o
21 @rm -f $(PROG3) $(PROG3).o
22
Note: See TracBrowser for help on using the repository browser.