Rev | Line | |
---|
[17] | 1 | # $Id: Makefile 215 2024-10-02 19:24:43Z nishi $
|
---|
| 2 |
|
---|
[212] | 3 | OBJ=o
|
---|
| 4 | STATIC=a
|
---|
[17] | 5 | include $(PWD)/Platform/$(PLATFORM).mk
|
---|
| 6 |
|
---|
| 7 | .PHONY: all clean
|
---|
[212] | 8 | .SUFFIXES: .c .$(OBJ) $(LIBSUF)
|
---|
[17] | 9 |
|
---|
[212] | 10 | all: mod_cgi$(LIBSUF) mod_proxy$(LIBSUF)
|
---|
[17] | 11 |
|
---|
[212] | 12 | .$(OBJ)$(LIBSUF):
|
---|
| 13 | $(CC) $(LDFLAGS) -shared -o $@ $< ../Common/common.$(STATIC) $(LIBS)
|
---|
[17] | 14 |
|
---|
[212] | 15 | .c.$(OBJ):
|
---|
[215] | 16 | $(CC) $(CFLAGS) -I ../Server -c -o $@ $<
|
---|
[17] | 17 |
|
---|
| 18 | clean:
|
---|
[215] | 19 | rm -f *.o *.so *.a *.dll
|
---|
Note:
See
TracBrowser
for help on using the repository browser.