aboutsummaryrefslogtreecommitdiff
path: root/mk/patterns.mk
diff options
context:
space:
mode:
Diffstat (limited to 'mk/patterns.mk')
-rw-r--r--mk/patterns.mk11
1 files changed, 0 insertions, 11 deletions
diff --git a/mk/patterns.mk b/mk/patterns.mk
deleted file mode 100644
index c81150260..000000000
--- a/mk/patterns.mk
+++ /dev/null
@@ -1,11 +0,0 @@
-$(buildprefix)%.o: %.cc
- @mkdir -p "$(dir $@)"
- $(trace-cxx) $(CXX) -o $@ -c $< $(CPPFLAGS) $(GLOBAL_CXXFLAGS_PCH) $(GLOBAL_CXXFLAGS) $(CXXFLAGS) $($@_CXXFLAGS) $(ERROR_SWITCH_ENUM) -MMD -MF $(call filename-to-dep, $@) -MP
-
-$(buildprefix)%.o: %.cpp
- @mkdir -p "$(dir $@)"
- $(trace-cxx) $(CXX) -o $@ -c $< $(CPPFLAGS) $(GLOBAL_CXXFLAGS_PCH) $(GLOBAL_CXXFLAGS) $(CXXFLAGS) $($@_CXXFLAGS) $(ERROR_SWITCH_ENUM) -MMD -MF $(call filename-to-dep, $@) -MP
-
-$(buildprefix)%.o: %.c
- @mkdir -p "$(dir $@)"
- $(trace-cc) $(CC) -o $@ -c $< $(CPPFLAGS) $(GLOBAL_CFLAGS) $(CFLAGS) $($@_CFLAGS) -MMD -MF $(call filename-to-dep, $@) -MP