source: Main/trunk/Module/Makefile@ 212

Last change on this file since 212 was 212, checked in by Nishi, on Oct 3, 2024 at 2:44:55 AM

compiles on vc6

  • Property svn:keywords set to Id
File size: 325 bytes
Line 
1# $Id: Makefile 212 2024-10-02 17:44:55Z nishi $
2
3OBJ=o
4STATIC=a
5include $(PWD)/Platform/$(PLATFORM).mk
6
7.PHONY: all clean
8.SUFFIXES: .c .$(OBJ) $(LIBSUF)
9
10all: mod_cgi$(LIBSUF) mod_proxy$(LIBSUF)
11
12.$(OBJ)$(LIBSUF):
13 $(CC) $(LDFLAGS) -shared -o $@ $< ../Common/common.$(STATIC) $(LIBS)
14
15.c.$(OBJ):
16 $(CC) $(CFLAGS) -c -o $@ $<
17
18clean:
19 rm -f *.o *.so *.a *.dll *.dll
Note: See TracBrowser for help on using the repository browser.