349a2d0c15
(c) 2010 Invisible Things Lab Authors: ========= Joanna Rutkowska <joanna@invisiblethingslab.com> Rafal Wojtczuk <rafal@invisiblethingslab.com>
10 lines
321 B
Makefile
10 lines
321 B
Makefile
CC=gcc
|
|
CFLAGS=-Wall
|
|
all: qubes_penctl qubes_add_pendrive_script
|
|
qubes_penctl: qubes_penctl.o
|
|
$(CC) -o qubes_penctl qubes_penctl.o -lxenstore
|
|
qubes_add_pendrive_script: qubes_add_pendrive_script.o
|
|
$(CC) -o qubes_add_pendrive_script qubes_add_pendrive_script.o
|
|
clean:
|
|
rm -f qubes_penctl qubes_add_pendrive_script *.o *~
|