P04 Modularisieren von C Code: add missing files for build system for task modularize
This commit is contained in:
parent
23f8d9f07e
commit
bd5311d12c
|
@ -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)
|
|
@ -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.
|
||||
*
|
||||
*/
|
Loading…
Reference in New Issue