Rev 2 | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed
# $Id: Makefile 3 2024-09-10 19:21:48Z nishi $
include $(PWD)/Platform/$(PLATFORM).mk
.PHONY: all clean
.SUFFIXES: .c .o
OBJS = main.o ircfw.o bot.o util.o news.o
all: okuu$(EXEC)
okuu$(EXEC): $(OBJS)
$(CC) $(LDFLAGS) -o $@ $(OBJS) $(LIBS)
.c.o:
$(CC) $(CFLAGS) -c -o $@ $<
clean:
rm -f *.o *.exe okuu