-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathGNUmakefile
65 lines (51 loc) · 2.61 KB
/
GNUmakefile
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
# -*- tab-width: 4 -*- ;; Emacs
# vi: set tabstop=4 :: Vi/ViM
################################################################################
################################### IDENT(1) ###################################
################################################################################
#
# $Title: GNU Makefile for building kubernetes tools $
# $Copyright: 2017 Devin Teske. All rights reserved. $
# $GitHub: freebsd-docker/kubernetes-bootstrap.git GNUmakefile 2017-09-05 19:14:27 +0000 freebsdfrau $
#
################################################################################
################################# CONFIGURATION ################################
################################################################################
# XXX
################################################################################
############################### GLOBAL VARIABLES ###############################
################################################################################
# XXX
################################################################################
################################### FUNCTIONS ##################################
################################################################################
#
# $(call variable,param,param,...)
#
# Call a function assigned to a variable.
# NB: Whitespace after comma[s] becomes part of param[s] (!)
#
#variable = $(shell echo "param = $(1)")
################################################################################
################################ TARGET OBJECTS ################################
################################################################################
# XXX
################################################################################
############################# TARGET DEPENDENCIES #############################
################################################################################
# XXX
################################################################################
################################ BUILD TARGETS ################################
################################################################################
#
# Top-Level Targets (TLTs)
#
.PHONY: all
all:
################################################################################
############################ EXTERNAL DEPENDENCIES ############################
################################################################################
# XXX
################################################################################
# END
################################################################################