Subversion Repositories MLServ

Rev

Rev 2 | Rev 5 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
1 nishi 1
# $Id: Makefile 4 2024-09-24 18:35:15Z nishi $
2
 
3
include $(PWD)/Platform/$(PLATFORM).mk
4
 
4 nishi 5
COMOBJS = string.o version.o db.o ipc.o
1 nishi 6
 
2 nishi 7
.PHONY: all clean install
1 nishi 8
.SUFFIXES: .c .o
9
 
4 nishi 10
all: common.a
1 nishi 11
 
12
common.a: $(COMOBJS)
13
	$(AR) rcs $@ $(COMOBJS)
14
 
15
.c.o:
16
	$(CC) $(CFLAGS) -c -o $@ $<
17
 
2 nishi 18
install: all
19
 
1 nishi 20
clean:
21
	rm -f *.o *.a