# $Id: Makefile 2 2024-09-13 08:38:39Z nishi $ include $(PWD)/Platform/$(PLATFORM).mk .PHONY: all clean .SUFFIXES: .c .o OBJS = ../Common/common.a main.o all: tewi$(EXEC) tewi$(EXEC): $(OBJS) $(CC) $(LDFLAGS) -o $@ $(OBJS) $(LIBS) .c.o: $(CC) $(CFLAGS) -c -o $@ $< clean: rm -f *.o tewi *.exe