diff options
author | Fred Sundvik <fsundvik@gmail.com> | 2016-07-06 13:10:30 +0300 |
---|---|---|
committer | Fred Sundvik <fsundvik@gmail.com> | 2016-07-06 13:10:30 +0300 |
commit | c5bf090d16cf1fc4d8186f1e8fbbd62457e72da6 (patch) | |
tree | b1e6aaedcf8f0cfb413faa5bc8036619d2cb51e6 /quantum/serial_link/cgreen/Makefile | |
parent | 3ac52b2e7623152f177670549b780492a0447c12 (diff) |
Remove CGreen make files
Diffstat (limited to 'quantum/serial_link/cgreen/Makefile')
-rw-r--r-- | quantum/serial_link/cgreen/Makefile | 38 |
1 files changed, 0 insertions, 38 deletions
diff --git a/quantum/serial_link/cgreen/Makefile b/quantum/serial_link/cgreen/Makefile deleted file mode 100644 index 6b31a3f923..0000000000 --- a/quantum/serial_link/cgreen/Makefile +++ /dev/null @@ -1,38 +0,0 @@ -# This Makefile ensures that the build is made out of source in a subdirectory called 'build' -# If it doesn't exist, it is created and a Makefile created there (from Makefile.build) -# -# This Makefile also contains delegation of the most common make commands -# -# If you have cmake installed you should be able to do: -# -# make -# make test -# make install -# make package -# -# That should build cgreen for C and C++, run some tests, install it locally and -# generate two distributable packages. - -all: build - cd $(CGREEN_BUILD_DIR); make all - -test: build - cd $(CGREEN_BUILD_DIR); make test - -clean: build - cd $(CGREEN_BUILD_DIR); make clean - -package: build - cd $(CGREEN_BUILD_DIR); make package - -install: - cd $(CGREEN_BUILD_DIR); make install - -############# Internal - -build: - mkdir -p $(CGREEN_BUILD_DIR) - cp Makefile.build $(CGREEN_BUILD_DIR)/Makefile - - -.SILENT: |