Subversion Repositories MLServ

Rev

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

# $Id: Makefile 2 2024-09-07 02:00:41Z nishi $

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

OBJS = main.o ../Common/common.a ../Common/database.a

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

all: mlserv.cgi

mlserv.cgi: $(OBJS)
        $(CC) $(LDFLAGS) -o $@ $(OBJS) $(LIBS) -lsqlite3

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

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

clean:
        rm -f *.o *.cgi