summaryrefslogtreecommitdiff
path: root/plugins/!NotAdopted/IMO2sProxy/src/imolib/Makefile
blob: 30775becec0f7c4e5c82e19e67af2de3256b70c5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
CFLAGS	= -I../common/ -lcurl -lpthread -lm -O0 -g
CC	= gcc
COMMON  = ../common/fifo.c ../common/cJSON.c
OBJS    = imo_request.c imo_skype.c skypetst.c io_layer.c

.PHONY: all skypetst clean

all	:	skypetst

skypetst:	$(COMMON) $(OBJS)
	        $(CC) -o skypetst $(COMMON) $(OBJS) $(CFLAGS)

clean	:
		rm skypetst