Subversion Repositories Mokou

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
2 nishi 1
# $Id: Makefile 2 2024-09-05 18:31:51Z nishi $
2
 
3
include $(PWD)/Platform/$(PLATFORM).mk
4
 
5
.PHONY: all clean
6
.SUFFIXES: .c .o
7
 
8
OBJS = main.o
9
 
10
all: mokouctl$(EXEC)
11
 
12
mokouctl$(EXEC): $(OBJS)
13
	$(CC) $(LDFLAGS) -o $@ $(OBJS) $(LIBS)
14
 
15
.c.o:
16
	$(CC) $(CFLAGS) -c -o $@ $<
17
 
18
clean:
19
	rm -f *.exe mokouctl *.o