Subversion Repositories Mokou

Rev

Blame | Last modification | View Log | Download | RSS feed

# $Id: Makefile 2 2024-09-05 18:31:51Z nishi $

include $(PWD)/Platform/$(PLATFORM).mk

.PHONY: all clean
.SUFFIXES: .c .o

OBJS = main.o

all: mokouctl$(EXEC)

mokouctl$(EXEC): $(OBJS)
        $(CC) $(LDFLAGS) -o $@ $(OBJS) $(LIBS)

.c.o:
        $(CC) $(CFLAGS) -c -o $@ $<

clean:
        rm -f *.exe mokouctl *.o