-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathMakefile
59 lines (47 loc) · 1.51 KB
/
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
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
##############################################################################
## neopolitan command line args ##
## ##
## Copyright © 2019-2021 Aquefir. ##
## Released under BSD-2-Clause. ##
##############################################################################
ifeq ($(strip $(AQ)),)
$(error "AQ was not found in your environment. You need to install the Slick Makefiles from github.com/aquefir/slick to continue.")
endif
# Target APE only
TP := APE
include $(AQ)/lib/slick/base.mk
PROJECT := uni_clarg
# put a ‘1’ for the desired target types to compile
SOFILE :=
AFILE := 1
# space-separated path list for #includes
# <system> includes
INCLUDES := include ../arr/include ../decl/include ../himem/include
# "local" includes
INCLUDEL := src
# space-separated library name list
LIBS :=
LIBDIRS :=
# frameworks (macOS target only)
FWORKS :=
# ‘3P’ are in-tree 3rd-party dependencies
# 3PLIBDIR is the base directory
# 3PLIBS is the folder names in the base directory for each library
3PLIBDIR := 3rdparty
3PLIBS :=
# sources
SFILES :=
CFILES := \
src/clarg.c
CPPFILES :=
PUBHFILES := \
include/uni/clarg.h
PRVHFILES := \
src/clarg.h
# test suite sources
TES_CFILES :=
TES_CPPFILES :=
TES_PUBHFILES :=
TES_PRVHFILES :=
# this defines all our usual targets
include $(AQ)/lib/slick/targets.mk