blob: f69226456bbda7605b456435ce1b6f4b1513ca15 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
.PHONY: all clean
all: build/limox build/tests/get_domainpart
./build/tests/get_domainpart
build/limox: build
gcc main.c gui.c xmpp.c -o build/limox -lSDL2
build/tests/get_domainpart: build
gcc tests/get_domainpart.c xmpp.c -o build/tests/get_domainpart -I.
build:
mkdir -p build/tests
clean:
rm -rf build
|