Merge branch 'for-linus' of git://ftp.arm.linux.org.uk/~rmk/linux-arm
[deliverable/linux.git] / tools / hv / Makefile
1 # Makefile for Hyper-V tools
2
3 CC = $(CROSS_COMPILE)gcc
4 PTHREAD_LIBS = -lpthread
5 WARNINGS = -Wall -Wextra
6 CFLAGS = $(WARNINGS) -g $(PTHREAD_LIBS)
7
8 all: hv_kvp_daemon hv_vss_daemon
9 %: %.c
10 $(CC) $(CFLAGS) -o $@ $^
11
12 clean:
13 $(RM) hv_kvp_daemon hv_vss_daemon
This page took 0.03101 seconds and 5 git commands to generate.