]> code.delx.au - refind/blob - mok/Makefile
More documentation of copyrights and licenses.
[refind] / mok / Makefile
1 #
2 # mok/Makefile
3 # Build control file for the libeg library
4 #
5
6 # This program is licensed under the terms of the GNU GPL, version 3,
7 # or (at your option) any later version.
8 # You should have received a copy of the GNU General Public License
9 # along with this program. If not, see <http://www.gnu.org/licenses/>.
10
11 SRCDIR = .
12
13 VPATH = $(SRCDIR)
14
15 LOCAL_CPPFLAGS = -I$(SRCDIR) -I$(SRCDIR)/../include
16
17 OBJS = guid.o mok.o security_policy.o simple_file.o
18 TARGET = libmok.a
19
20 all: $(TARGET)
21
22 include $(SRCDIR)/../Make.common
23
24 # EOF