Files
collection/examples/make/computer-engineering/Makefile
T
2026-06-11 13:26:01 +02:00

19 lines
329 B
Makefile

SHELL := /usr/bin/env bash
SRC_DIR := ./src
INC_DIR := ./inc
OBJ_DIR := ./obj
BIN_DIR := ./bin
LIB_DIR := ../../libctboard
COMMON_DIR := ../../common
AS_SRC := table.s
C_DEF := PLATFORM_M0
C_INC :=
C_SRC :=
include $(COMMON_DIR)/root.mk
include $(COMMON_DIR)/pdf.mk