Subversion Repositories Okuu

Rev

Go to most recent revision | Details | Last modification | View Log | RSS feed

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