diff options
author | HE, Tao <sighingnow@gmail.com> | 2018-06-14 19:25:37 -0400 |
---|---|---|
committer | Ben Gamari <ben@smart-cactus.org> | 2018-06-14 19:25:50 -0400 |
commit | db5ef2b4f9d22738ae75db29c3e45e370efa4169 (patch) | |
tree | 6b65c021169acd7f03d70bb596685e3cdefcf464 /libraries/libiserv | |
parent | 3a18a82feedef756c9c2fc92dc902823b425f093 (diff) | |
download | haskell-db5ef2b4f9d22738ae75db29c3e45e370efa4169.tar.gz |
Exclude libraries/libiserv/ghc.mk and other things via .gitignore.
The ghc.mk file is generated by `./boot` and should be excluded from git
via .gitignore, since the file `ghc.mk` may have different line ends on
windows.
The file GNUmakefile and dir dist, dist-install should also be excluded
via .gitignore, just as other libraries.
Test Plan: [skip ci]
Reviewers: bgamari
Reviewed By: bgamari
Subscribers: osa1, rwbarton, thomie, carter
Differential Revision: https://phabricator.haskell.org/D4814
Diffstat (limited to 'libraries/libiserv')
-rw-r--r-- | libraries/libiserv/.gitignore | 4 | ||||
-rw-r--r-- | libraries/libiserv/ghc.mk | 5 |
2 files changed, 4 insertions, 5 deletions
diff --git a/libraries/libiserv/.gitignore b/libraries/libiserv/.gitignore new file mode 100644 index 0000000000..89cf73d0b3 --- /dev/null +++ b/libraries/libiserv/.gitignore @@ -0,0 +1,4 @@ +GNUmakefile +/dist-install/ +/dist/ +ghc.mk diff --git a/libraries/libiserv/ghc.mk b/libraries/libiserv/ghc.mk deleted file mode 100644 index 6dc323b336..0000000000 --- a/libraries/libiserv/ghc.mk +++ /dev/null @@ -1,5 +0,0 @@ -libraries/libiserv_PACKAGE = libiserv -libraries/libiserv_dist-install_GROUP = libraries -$(if $(filter libiserv,$(PACKAGES_STAGE0)),$(eval $(call build-package,libraries/libiserv,dist-boot,0))) -$(if $(filter libiserv,$(PACKAGES_STAGE1)),$(eval $(call build-package,libraries/libiserv,dist-install,1))) -$(if $(filter libiserv,$(PACKAGES_STAGE2)),$(eval $(call build-package,libraries/libiserv,dist-install,2))) |