Rev 2 | Rev 5 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed
# $Id: Makefile 4 2024-09-24 18:35:15Z nishi $
include $(PWD)/Platform/$(PLATFORM).mk
COMOBJS = string.o version.o db.o ipc.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