File: Makefile

package info (click to toggle)
golang-github-linuxkit-virtsock 0.0~git20170720.0.0416e3d-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 424 kB
  • ctags: 444
  • sloc: ansic: 1,435; makefile: 81; sh: 7
file content (45 lines) | stat: -rw-r--r-- 1,172 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
DEPS=compat.h Makefile
MSBUILD="/c/Program Files (x86)/MSBuild/14.0/Bin/MSBuild.exe"

.PHONY: build-in-container linux windows clean
.PHONY: hvbench.linux hvecho.linux hvstress.linux

# Build Linux binaries in a container
build-in-container:
	@docker build -t hvsock-build -f ./Dockerfile.build .
	@docker run --rm -v ${CURDIR}/build:/src/build hvsock-build

linux: build/hvbench build/hvecho build/hvstress
windows: build/hvecho.exe build/hvstress.exe build/hvbench.exe

# Linux targets
CFLAGS := -Wall -Werror -g -ggdb -static
build/hvbench: hvbench.c $(DEPS)
	$(CC) $(CFLAGS) -o $@ $<

build/hvecho: hvecho.c $(DEPS)
	$(CC) $(CFLAGS) -o $@ $<

build/hvstress: hvstress.c $(DEPS)
	$(CC) $(CFLAGS) -o $@ $<


# Windows targets
build/hvbench.exe: hvbench.c hvbench.vcxproj hvbench.sln $(DEPS)
	$(MSBUILD) hvbench.sln
	mkdir -p build
	cp x64/Debug/hvbench.exe $@

build/hvecho.exe: hvecho.c hvecho.vcxproj hvecho.sln $(DEPS)
	$(MSBUILD) hvecho.sln
	mkdir -p build
	cp x64/Debug/hvecho.exe $@

build/hvstress.exe: hvstress.c hvstress.vcxproj hvstress.sln $(DEPS)
	$(MSBUILD) hvstress.sln
	mkdir -p build
	cp x64/Debug/hvstress.exe $@

clean:
	rm -rf build
	rm -rf Debug x64