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
RevLine 
[17]1# $Id: Makefile 215 2024-10-02 19:24:43Z nishi $
2
[212]3OBJ=o
4STATIC=a
[17]5include $(PWD)/Platform/$(PLATFORM).mk
6
7.PHONY: all clean
[212]8.SUFFIXES: .c .$(OBJ) $(LIBSUF)
[17]9
[212]10all: 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
18clean:
[215]19 rm -f *.o *.so *.a *.dll
Note: See TracBrowser for help on using the repository browser.