summaryrefslogtreecommitdiffstats
path: root/quantum/serial_link
diff options
context:
space:
mode:
authorFred Sundvik <fsundvik@gmail.com>2016-07-06 12:10:30 +0200
committerFred Sundvik <fsundvik@gmail.com>2016-07-06 12:10:30 +0200
commitc5bf090d16cf1fc4d8186f1e8fbbd62457e72da6 (patch)
treeb1e6aaedcf8f0cfb413faa5bc8036619d2cb51e6 /quantum/serial_link
parent3ac52b2e7623152f177670549b780492a0447c12 (diff)
downloadqmk_firmware-c5bf090d16cf1fc4d8186f1e8fbbd62457e72da6.tar.gz
qmk_firmware-c5bf090d16cf1fc4d8186f1e8fbbd62457e72da6.tar.xz
Remove CGreen make files
Diffstat (limited to 'quantum/serial_link')
-rw-r--r--quantum/serial_link/cgreen/Makefile38
-rw-r--r--quantum/serial_link/cgreen/Makefile.build33
m---------quantum/serial_link/cgreen/cgreen0
3 files changed, 0 insertions, 71 deletions
diff --git a/quantum/serial_link/cgreen/Makefile b/quantum/serial_link/cgreen/Makefile
deleted file mode 100644
index 6b31a3f92..000000000
--- 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:
diff --git a/quantum/serial_link/cgreen/Makefile.build b/quantum/serial_link/cgreen/Makefile.build
deleted file mode 100644
index f76165244..000000000
--- a/quantum/serial_link/cgreen/Makefile.build
+++ /dev/null
@@ -1,33 +0,0 @@
-# This Makefile is copied from the cgreen top directory (where it is
-# named Makefile.build) and put in a subdirectory called 'build' where
-# builds are made This Makefile then automatically creates
-# subdirectories for C and C++ builds configuring them using the cmake
-# command. Once created you can always tweak the cmake setup as with
-# any cmake build directory
-
-all: build-c build-c++
- for d in build-* ; do cd $$d; make ; cd .. ; done
-
-clean:
- for d in build-* ; do cd $$d; make clean ; cd .. ; done
-
-check test:
- for d in build-* ; do cd $$d; make check ; cd .. ; done
-
-package:
- for d in build-* ; do cd $$d; make package ; cd .. ; done
-
-install:
- for d in build-* ; do cd $$d; make install ; cd .. ; done
-
-############ Internal
-
-build-c:
- mkdir build-c
- cd build-c; cmake -G "Unix Makefiles" $(CGREEN_DIR)
-
-build-c++:
- mkdir build-c++
- cd build-c++; cmake -G "Unix Makefiles" -DWITH_CXX:bool=ON $(CGREEN_DIR)
-
-.SILENT:
diff --git a/quantum/serial_link/cgreen/cgreen b/quantum/serial_link/cgreen/cgreen
deleted file mode 160000
-Subproject d4d438dda1b7131f0bd0530b2c258e9dea6a2a9