- added Makefile for noise

git-svn-id: http://moon:8086/svn/software/trunk/libsrc/noise@1096 b431acfa-c32f-4a4a-93f1-934dc6c82436
This commit is contained in:
2022-06-27 17:09:37 +00:00
parent 6e85f72992
commit 04cafa36f3
2 changed files with 14 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
include ./config.mk
NAME := Noise
GCC_SRCS := $(LIBSRC_PATH)/noise/noise.c
INCLUDES += -I $(LIBSRC_PATH)
include $(MAKE_HOME)/compile.mk
+5
View File
@@ -0,0 +1,5 @@
MAKE_HOME ?= /home/jens/work/software/make
CONFIG ?= debug
BUILD_DIR ?= ./build/${CONFIG}
LIBSRC_PATH ?= $(realpath ../../libsrc)