tewi/Common/Makefile
Nishi 2e35aca50c string op works, log works too
git-svn-id: file:///raid/svn-personal/tewi/trunk@3 8739d7e6-ffea-ec47-b151-bdff447c6205
2024-09-13 09:06:44 +00:00

20 lines
218 B
Makefile

# $Id$
include $(PWD)/Platform/$(PLATFORM).mk
.PHONY: all clean
.SUFFIXES: .c .o
OBJS = string.o log.o
all: common.a
common.a: $(OBJS)
ar rcs $@ $(OBJS)
.c.o:
$(CC) $(CFLAGS) -c -o $@ $<
clean:
rm -f *.o *.a