Subversion Repositories Tewi

Rev

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

# $Id: Makefile 43 2024-09-18 09:19:03Z nishi $

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

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

OBJS = version.o main.o config.o server.o http.o module.o strptime.o $(EXTOBJS)

all: tewi$(EXEC)

tewi$(EXEC): $(OBJS) ../Common/common.a
        $(CC) $(LDFLAGS) -o $@ $(OBJS) $(EXTLIBS) $(LIBS) ../Common/common.a

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

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