Revision: | 1.1 |
Committed: | Thu Oct 17 09:53:38 2024 UTC (4 weeks, 1 day ago) by nishi |
Branch: | MAIN |
CVS Tags: | v2_05A, v2_05, HEAD |
Log Message: | update |
# | User | Rev | Content |
---|---|---|---|
1 | nishi | 1.1 | # $Id: Makefile 366 2024-10-17 00:54:56Z nishi $ |
2 | |||
3 | OBJ=o | ||
4 | STATIC=a | ||
5 | END=_dll | ||
6 | SHARED=-shared | ||
7 | include $(PWD)/Platform/$(PLATFORM).mk | ||
8 | |||
9 | .PHONY: all clean | ||
10 | .SUFFIXES: .c .$(OBJ) $(LIBSUF) | ||
11 | |||
12 | all: mod_cgi$(LIBSUF) mod_proxy$(LIBSUF) | ||
13 | |||
14 | .$(OBJ)$(LIBSUF): | ||
15 | $(CC) $(LDFLAGS) $(SHARED) -o $@ $< $(LIBEXTRA) ../Common/common.$(STATIC) $(LIBS) | ||
16 | |||
17 | .c.$(OBJ): | ||
18 | $(CC) $(CFLAGS) -I ../Server -c -o $@ $< | ||
19 | |||
20 | clean: | ||
21 | rm -f *.o *.so *.a *.dll *.tds *.obj *.nlm |