Subversion Repositories MLServ

Rev

Rev 4 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed

# $Id: Makefile 5 2024-09-25 00:19:35Z nishi $

include $(PWD)/Platform/$(PLATFORM).mk

COMOBJS = string.o version.o db.o ipc.o crypt.o

.PHONY: all clean install
.SUFFIXES: .c .o

all: common.a

common.a: $(COMOBJS)
        $(AR) rcs $@ $(COMOBJS)

.c.o:
        $(CC) $(CFLAGS) -c -o $@ $<

install: all

clean:
        rm -f *.o *.a