aboutsummaryrefslogtreecommitdiff
path: root/util/intelp2m/Makefile
blob: 2731bc7a46990260845b8728800b53180fb06104 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
## SPDX-License-Identifier: GPL-2.0-only
# simple makefile for the project

OUTPUT_DIR = generate
PROJECT_NAME = intelp2m

default:
	go version
	go build -v -o $(PROJECT_NAME)

clean:
	rm -Rf $(PROJECT_NAME) $(OUTPUT_DIR)