diff options
author | Markus Uhlin <markus@nifty-networks.net> | 2025-09-15 18:50:32 +0200 |
---|---|---|
committer | Markus Uhlin <markus@nifty-networks.net> | 2025-09-15 18:50:32 +0200 |
commit | c3eee8e333866d92e5fd94ae83cef618758c11bb (patch) | |
tree | 234a06fd90bd61a6668490a0cbf8870e6c674b81 /common.mk |
FICS RPBLC v1.4.61.4.6
Diffstat (limited to 'common.mk')
-rw-r--r-- | common.mk | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/common.mk b/common.mk new file mode 100644 index 0000000..d6748a7 --- /dev/null +++ b/common.mk @@ -0,0 +1,8 @@ +# common.mk -- common rules + +.c.o: + $(E) " CC " $@ + $(Q) $(CC) $(CFLAGS) -I $(INCLUDE_DIR) $(CPPFLAGS) -c -o $@ $< +.cpp.o: + $(E) " CXX " $@ + $(Q) $(CXX) $(CXXFLAGS) -I $(INCLUDE_DIR) $(CPPFLAGS) -c -o $@ $< |