source:
Main/trunk/Module/Makefile@
219
Last change on this file since 219 was 219, checked in by , on Oct 3, 2024 at 5:40:37 AM | |
---|---|
|
|
File size: 341 bytes |
Line | |
---|---|
1 | # $Id: Makefile 219 2024-10-02 20:40:37Z nishi $ |
2 | |
3 | OBJ=o |
4 | STATIC=a |
5 | END=_dll |
6 | include $(PWD)/Platform/$(PLATFORM).mk |
7 | |
8 | .PHONY: all clean |
9 | .SUFFIXES: .c .$(OBJ) $(LIBSUF) |
10 | |
11 | all: mod_cgi$(LIBSUF) mod_proxy$(LIBSUF) |
12 | |
13 | .$(OBJ)$(LIBSUF): |
14 | $(CC) $(LDFLAGS) -shared -o $@ $< ../Common/common.$(STATIC) $(LIBS) |
15 | |
16 | .c.$(OBJ): |
17 | $(CC) $(CFLAGS) -I ../Server -c -o $@ $< |
18 | |
19 | clean: |
20 | rm -f *.o *.so *.a *.dll |
Note:
See TracBrowser
for help on using the repository browser.