aboutsummaryrefslogtreecommitdiff
path: root/extras/Makefile
blob: f2b04d4c4ba63e5329d28ccbe33ff5ac6f8a60eb (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=$(EXTRA:=.o)
all: clean $(EXTRA)
$(EXTRA): $(@:=.o)

include ../common.mk