aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorAleksey Veresov <aleksey@veresov.pro>2021-01-02 19:39:59 +0300
committerAleksey Veresov <aleksey@veresov.pro>2021-01-02 19:39:59 +0300
commitcff0c84f6b14f37497ff22c54948380af64e8106 (patch)
tree2acf23d98b0f9681d5f42346230538aa684a527b /Makefile
parent0c32a26c9a43b2d45968b9ac59b8916c1d4092d1 (diff)
downloadcsx-cff0c84f6b14f37497ff22c54948380af64e8106.tar
csx-cff0c84f6b14f37497ff22c54948380af64e8106.tar.xz
csx-cff0c84f6b14f37497ff22c54948380af64e8106.zip
It's alive.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 05c8746..f2fe69a 100644
--- a/Makefile
+++ b/Makefile
@@ -35,7 +35,7 @@ MAN = man
# Library itself:
LIB = libcsx.a
# Modules:
-EXTERNAL = $(foreach x,$(notdir $(wildcard $(INCLUDE)/csx/*.h)),$(x:.h=))
+EXTERNAL = $(foreach x,$(notdir $(wildcard $(INCLUDE)/*.h)),$(x:.h=))
INTERNAL = $(foreach x,$(notdir $(wildcard $(SRCDIR)/*.h)),$(x:.h=))
# Default target is library:
@@ -53,7 +53,7 @@ EXAMPLES = $(foreach x,$(XSRC:.c=),$(BUILD)/$(x))
# Dependency file:
DEPS = deps.mk
-SRCINC = -I$(INCLUDE)/csx
+SRCINC = -I$(INCLUDE)
XINC = -I$(INCLUDE)
SRCBUILD = $(BUILD)/$(SRCDIR)
XBLD = $(BUILD)/$(EXADIR)