]> git.cworth.org Git - loudgame/blob - Makefile
Make *everything* including connection open, happen from inside the glib main loop
[loudgame] / Makefile
1 ALL=lm-echo
2 MYCFLAGS=-Wall `pkg-config --cflags loudmouth-1.0`
3 MYLDFLAGS=`pkg-config --libs loudmouth-1.0`
4
5 all: $(ALL)
6
7 %: %.c
8         $(CC) $(CFLAGS) $(MYCFLAGS) $(LDFLAGS) $(MYLDFLAGS) -o $@ $^
9
10 clean:
11         rm -f $(ALL) *.o