CFLAGS=-Wall
LDFLAGS=-lsctp

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

sctp-dry-event: sctp-dry-event.o
	$(CC) $(LDFLAGS) -o $@ $^

clean:
	@rm sctp-dry-event *.o
