Subversion Repositories Tewi

Rev

Rev 219 | Rev 305 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
17 nishi 1
# $Id: Makefile 255 2024-10-04 04:08:58Z nishi $
2
 
212 nishi 3
OBJ=o
4
STATIC=a
219 nishi 5
END=_dll
17 nishi 6
include $(PWD)/Platform/$(PLATFORM).mk
7
 
8
.PHONY: all clean
212 nishi 9
.SUFFIXES: .c .$(OBJ) $(LIBSUF)
17 nishi 10
 
212 nishi 11
all: mod_cgi$(LIBSUF) mod_proxy$(LIBSUF)
17 nishi 12
 
212 nishi 13
.$(OBJ)$(LIBSUF):
14
	$(CC) $(LDFLAGS) -shared -o $@ $< ../Common/common.$(STATIC) $(LIBS)
17 nishi 15
 
212 nishi 16
.c.$(OBJ):
215 nishi 17
	$(CC) $(CFLAGS) -I ../Server -c -o $@ $<
17 nishi 18
 
19
clean:
255 nishi 20
	rm -f *.o *.so *.a *.dll *.tds