source: Main/trunk/Module/Makefile@ 215

Last change on this file since 215 was 215, checked in by Nishi, on Oct 3, 2024 at 4:24:43 AM

can be compiled using bcc32 now

  • Property svn:keywords set to Id
File size: 332 bytes
Line 
1# $Id: Makefile 215 2024-10-02 19:24:43Z 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) -I ../Server -c -o $@ $<
17
18clean:
19 rm -f *.o *.so *.a *.dll
Note: See TracBrowser for help on using the repository browser.