tewi/Module/Makefile

18 lines
253 B
Makefile
Raw Permalink Normal View History

# $Id$
include $(PWD)/Platform/$(PLATFORM).mk
.PHONY: all clean
.SUFFIXES: .c .o $(LIB)
all: mod_cgi$(LIB)
.o$(LIB):
$(CC) $(LDFLAGS) -shared -o $@ $< ../Common/common.a $(LIBS)
.c.o:
$(CC) $(CFLAGS) -c -o $@ $<
clean:
rm -f *.o *.so *.a *.dll