diff options
| author | Florian Fischer <florian.fl.fischer@fau.de> | 2019-08-22 20:52:35 +0200 |
|---|---|---|
| committer | Florian Fischer <florian.fl.fischer@fau.de> | 2019-08-22 20:52:35 +0200 |
| commit | 79585e92e17076ad2981958f5ee4c93895044452 (patch) | |
| tree | 2394879b227a43449add9ad670863940a7a4b4cf | |
| parent | 891704a9b443001a2e1b94d63a2bd119105bdc18 (diff) | |
| download | allocbench-79585e92e17076ad2981958f5ee4c93895044452.tar.gz allocbench-79585e92e17076ad2981958f5ee4c93895044452.zip | |
add pylint make target
| -rw-r--r-- | Makefile | 5 | ||||
| -rw-r--r-- | TODO | 4 |
2 files changed, 4 insertions, 5 deletions
@@ -15,7 +15,7 @@ export CXXFLAGS = -std=c++11 $(CFLAGS) -fno-exceptions export LDFLAGS = -pthread -static-libgcc export LDXXFLAGS = $(LDFLAGS) -static-libstdc++ -.PHONY: all clean $(MAKEFILES) +.PHONY: all clean pylint $(MAKEFILES) all: $(OBJDIR)/ccinfo $(MAKEFILES) $(MAKEFILES): @@ -29,3 +29,6 @@ $(OBJDIR): clean: rm -rf $(OBJDIR) + +pylint: + pylint $(shell find $(PWD) -name "*.py" -not -path "$(OBJDIR)/*")
\ No newline at end of file @@ -6,7 +6,3 @@ - verify (commit id, checksum) remote sources - git recursive clone - -- pylint Makefile target - - |
