source: Main/trunk/Module/Makefile@ 314

Last change on this file since 314 was 314, checked in by Nishi, on Oct 14, 2024 at 4:37:04 PM

module works

  • Property svn:keywords set to Id
File size: 370 bytes
RevLine 
[17]1# $Id: Makefile 314 2024-10-14 07:37:04Z nishi $
2
[212]3OBJ=o
4STATIC=a
[219]5END=_dll
[305]6SHARED=-shared
[17]7include $(PWD)/Platform/$(PLATFORM).mk
8
9.PHONY: all clean
[212]10.SUFFIXES: .c .$(OBJ) $(LIBSUF)
[17]11
[212]12all: mod_cgi$(LIBSUF) mod_proxy$(LIBSUF)
[17]13
[212]14.$(OBJ)$(LIBSUF):
[305]15 $(CC) $(LDFLAGS) $(SHARED) -o $@ $< ../Common/common.$(STATIC) $(LIBS)
[17]16
[212]17.c.$(OBJ):
[215]18 $(CC) $(CFLAGS) -I ../Server -c -o $@ $<
[17]19
20clean:
[314]21 rm -f *.o *.so *.a *.dll *.tds *.obj
Note: See TracBrowser for help on using the repository browser.