P04 Modularisieren von C Code: add missing files for build system for task modularize

This commit is contained in:
huno 2022-02-23 00:11:55 +01:00
parent 23f8d9f07e
commit bd5311d12c
2 changed files with 17 additions and 0 deletions

View File

@ -0,0 +1,8 @@
SNP_SHARED_MAKEFILE := $(if $(SNP_SHARED_MAKEFILE),$(SNP_SHARED_MAKEFILE),"~/snp/shared.mk")
TARGET := bin/triangle
SOURCES := src/triangle.c src/read.c src/rectang.c
TSTSOURCES := tests/tests.c
LIBS := -lm
include $(SNP_SHARED_MAKEFILE)

View File

@ -0,0 +1,9 @@
/**
* @mainpage SNP - P04 Modular C Code
*
* @section Purpose
*
* This lab is provided to get acquainted with first simple
* <b>modular</b> programming in C.
*
*/