-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathMakefile
29 lines (21 loc) · 945 Bytes
/
Makefile
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
# DPS8M simulator: Makefile
# vim: filetype=make:tabstop=4:cc=79:ai:noet:list:listchars=tab\:\>\-
# SPDX-License-Identifier: MIT-0
# scspell-id: c59ea528-f631-11ec-a3d7-80ee73e9b8e7
# Copyright (c) 2021-2024 Jeffrey H. Johnson
# Copyright (c) 2021-2025 The DPS8M Development Team
###############################################################################
all:
@printf '%s\n' \
"*** GNU Make is required; try \"gmake\"."
###############################################################################
.DEFAULT:
@printf '%s\n' \
"*** GNU Make is required; try \"gmake\"."
###############################################################################
.PHONY: all
###############################################################################
# Local Variables:
# mode: make
# tab-width: 4
# End: