aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
blob: 62c42dbe82fe7eaa511057664a061e3b61d99f3f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
VERSION=0.1
GIT_VERSION := $(shell [ -d .git ] && echo "-$$(git describe --always)")

CFLAGS ?= -g
CFLAGS += -DVERSION=\"$(VERSION)$(GIT_VERSION)\"

all: sircbot

sircbot_OBJ = sircbot.o irc.o

sircbot: $(sircbot_OBJ)
	$(CC) $(LDFLAGS) -o $@ $^

.c.o:
	$(CC) $(CFLAGS) -c $^

clean:
	rm -rf sircbot $(sircbot_OBJ)