aboutsummaryrefslogtreecommitdiff
path: root/core/Makefile
blob: 05fe33ffe392fbf367f2ffbbe62c3ccc92b3a578 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# SPDX-License-Identifier: GPL-3.0-or-later
# Special
.POSIX:
.SUFFIXES: .o .c

# config.mk
include ../config.mk

# Utilities
OBJ=$(CORE:=.o)
all: clean $(CORE)
$(CORE): $(@:=.o)

include ../common.mk