Subversion Repositories MLServ

Rev

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

MLOBJS = main.o
MLOBJS += server.o newlist.o
MLOBJS += ../Common/common.a

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

all: mlserv$(EXEC)

mlserv$(EXEC): $(MLOBJS)
        $(CC) $(LDFLAGS) -o $@ $(MLOBJS) $(LIBS) -lsqlite3

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

install: all
        mkdir -p $(PREFIX)/bin
        cp mlserv$(EXEC) $(PREFIX)/bin/

clean:
        rm -f *.o mlserv *.exe