aboutsummaryrefslogtreecommitdiff
path: root/core/Makefile
blob: d36a0954d32ad40962eece5de2b0f99b148807d7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# SPDX-License-Identifier: GPL-3.0-or-later
#
# Copyright (C) 2022, 2023 Ferass El Hafidi <vitali64pmemail@protonmail.com>
# Copyright (C) 2022 Leah Rowe <leah@libreboot.org>

# Special
.POSIX:
.SUFFIXES: .o .c

# config.mk
include ../config.mk

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

include ../common.mk