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 *~
|