source: Main/trunk/Common/Makefile@ 218

Last change on this file since 218 was 218, checked in by Nishi, on Oct 3, 2024 at 4:59:49 AM

fix build

  • Property svn:keywords set to Id
File size: 402 bytes
RevLine 
[2]1# $Id: Makefile 218 2024-10-02 19:59:49Z nishi $
2
[212]3OBJ=o
4STATIC=a
[218]5AR_FLAGS=rcs
[215]6AR_PROC=cat
[2]7include $(PWD)/Platform/$(PLATFORM).mk
8
9.PHONY: all clean
[212]10.SUFFIXES: .c .$(OBJ)
[2]11
[212]12OBJS = string.$(OBJ) log.$(OBJ) dir.$(OBJ)
[2]13
[212]14all: common.$(STATIC)
[2]15
[218]16common.a: $(OBJS)
17 $(AR) rcs $@ `echo $(OBJS) | $(AR_PROC)`
18
19common.lib: $(OBJS)
[215]20 $(AR) $(AR_FLAGS)$@ `echo $(OBJS) | $(AR_PROC)`
[2]21
[212]22.c.$(OBJ):
[2]23 $(CC) $(CFLAGS) -c -o $@ $<
24
25clean:
[215]26 rm -f *.o *.a *.lib *.obj
Note: See TracBrowser for help on using the repository browser.