okuu/Bot/Makefile

20 lines
272 B
Makefile
Raw Permalink Normal View History

# $Id$
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