Mercurial > hg > FederatedLinda
diff tools/Linda_library/Makefile @ 8:6c40056777be
Initial revision
author | fuchita |
---|---|
date | Sat, 16 Feb 2008 13:18:02 +0900 |
parents | |
children | 1b86f7cfb01a |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/tools/Linda_library/Makefile Sat Feb 16 13:18:02 2008 +0900 @@ -0,0 +1,20 @@ +CC=gcc +AR=ar +CFLAGS=-c -g -Wall +FLAGS=-Wall -DDEBUG +TARGET=ldserv liblindaapi.a +LINDADIR=. +LIBDIR=$(LINDADIR) + +all : $(TARGET) + +ldserv : $(LINDADIR)/ldserv.c + $(CC) $(FLAGS) -g -o ldserv $(LINDADIR)/ldserv.c + +liblindaapi.a : $(LINDADIR)/lindaapi.c + $(CC) $(FLAGS) -g -c -o lindaapi.o $(LINDADIR)/lindaapi.c + $(AR) cr $(LIBDIR)/liblindaapi.a lindaapi.o + +clean : + rm -f $(TARGET) *.o +