summaryrefslogtreecommitdiff
path: root/src/utils/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'src/utils/Makefile')
-rw-r--r--src/utils/Makefile55
1 files changed, 3 insertions, 52 deletions
diff --git a/src/utils/Makefile b/src/utils/Makefile
index 29369ae..c80f261 100644
--- a/src/utils/Makefile
+++ b/src/utils/Makefile
@@ -1,53 +1,4 @@
-# Makefile for libdom
-#
-# Toolchain is exported by top-level makefile
-#
-# Top-level makefile also exports the following variables:
-#
-# COMPONENT Name of component
-# EXPORT Absolute path of export directory
-# TOP Absolute path of source tree root
-#
-# The top-level makefile requires the following targets to exist:
-#
-# clean Clean source tree
-# debug Create a debug binary
-# distclean Fully clean source tree, back to pristine condition
-# export Export distributable components to ${EXPORT}
-# release Create a release binary
-# setup Perform any setup required prior to compilation
-# test Execute any test cases
+# Sources
+DIR_SOURCES := namespace.c
-# Manipulate include paths
-CFLAGS += -I$(CURDIR)
-
-# Objects
-OBJS = namespace
-
-.PHONY: clean debug distclean export release setup test
-
-# Targets
-release: $(addprefix ../Release/, $(addsuffix .o, $(OBJS)))
-
-debug: $(addprefix ../Debug/, $(addsuffix .o, $(OBJS)))
-
-clean:
- -@${RM} ${RMFLAGS} $(addprefix ../Release/, $(addsuffix .o, ${OBJS}))
- -@${RM} ${RMFLAGS} $(addprefix ../Debug/, $(addsuffix .o, ${OBJS}))
-
-distclean:
-
-setup:
-
-export:
-
-test:
-
-# Pattern rules
-../Release/%.o: %.c
- @${ECHO} ${ECHOFLAGS} "==> $<"
- @${CC} -c ${CFLAGS} -DNDEBUG -o $@ $<
-
-../Debug/%.o: %.c
- @${ECHO} ${ECHOFLAGS} "==> $<"
- @${CC} -c -g ${CFLAGS} -o $@ $<
+include build/makefiles/Makefile.subdir