Subversion Repositories Keine

Rev

Rev 2 | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed

# $Id: Makefile 4 2024-09-11 10:22:22Z nishi $

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

OBJS = main.o cgi.o util.o version.o man.o

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

all: keine.cgi

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

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

clean:
        rm -f *.cgi *.o