From 2306a417c8179d26b28959eedbca0369b88f2d2f Mon Sep 17 00:00:00 2001 From: Laurens Valk Date: Sun, 20 Sep 2020 20:44:53 +0200 Subject: [PATCH] lsynth: Move makefile one level up. Seperate it from source. --- .gitignore | 4 ++-- lsynth/{src => }/makefile | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) rename lsynth/{src => }/makefile (77%) diff --git a/.gitignore b/.gitignore index c2b2e236b..fea67bd08 100644 --- a/.gitignore +++ b/.gitignore @@ -51,6 +51,6 @@ Mkfile.old dkms.conf # Generated binaries / errors -lsynth/src/lsynthcp -lsynth/src/1 mklist/mklist +lsynth/lsynthcp +lsynth/1 diff --git a/lsynth/src/makefile b/lsynth/makefile similarity index 77% rename from lsynth/src/makefile rename to lsynth/makefile index 0f770e317..4e8528c40 100644 --- a/lsynth/src/makefile +++ b/lsynth/makefile @@ -8,7 +8,7 @@ RANLIB = ranlib ## This is lame. I don't know how to do both .c and .cpp for the OBJS line ## so I pretend L3*.cpp is L3*.c and make rules for them later. # -SRCS = lsynthcp.c band.c hose.c curve.c mathlib.c +SRCS = src/lsynthcp.c src/band.c src/hose.c src/curve.c src/mathlib.c OBJS = $(SRCS:.c=.o) all : lsynthcp