#!/bin/bash

if [[ $1 == --include ]]; then
	pkg-config --cflags lua51
    exit 0
elif [[ $1 == --static ]]; then
	pkg-config --libs lua51
fi

exit 1
