diff options
author | Bram Moolenaar <Bram@vim.org> | 2016-01-15 22:34:45 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2016-01-15 22:34:45 +0100 |
commit | abfa9efb983c6fe9f5c4c342ff4d7017ce9a2c4b (patch) | |
tree | 97fac993c46108bc4e29da8588592d119c30d96b /src/xxd | |
parent | 36d7cd8965bc4027d420c7d70c56ac95d83d3bfa (diff) | |
download | vim-git-abfa9efb983c6fe9f5c4c342ff4d7017ce9a2c4b.tar.gz |
patch 7.4.1100v7.4.1100
Problem: Cygwin makefiles are unused.
Solution: Remove them.
Diffstat (limited to 'src/xxd')
-rw-r--r-- | src/xxd/Make_cyg.mak | 28 | ||||
-rw-r--r-- | src/xxd/Make_ming.mak | 2 |
2 files changed, 1 insertions, 29 deletions
diff --git a/src/xxd/Make_cyg.mak b/src/xxd/Make_cyg.mak deleted file mode 100644 index 4f344f038..000000000 --- a/src/xxd/Make_cyg.mak +++ /dev/null @@ -1,28 +0,0 @@ -# The most simplistic Makefile, for Cygnus gcc on MS-DOS - -ifndef USEDLL -USEDLL = no -endif - -ifeq (yes, $(USEDLL)) -DEFINES = -LIBS = -lc -else -DEFINES = -LIBS = -endif - -CC = gcc -CFLAGS = -O2 -Wall -DWIN32 $(DEFINES) - -ifneq (sh.exe, $(SHELL)) -DEL = rm -else -DEL = del -endif - -xxd.exe: xxd.c - $(CC) $(CFLAGS) -s -o xxd.exe xxd.c $(LIBS) - -clean: - -$(DEL) xxd.exe diff --git a/src/xxd/Make_ming.mak b/src/xxd/Make_ming.mak index 5147e89c1..2d3226131 100644 --- a/src/xxd/Make_ming.mak +++ b/src/xxd/Make_ming.mak @@ -1,4 +1,4 @@ -# The most simplistic Makefile, for MinGW gcc on MS-DOS +# The most simplistic Makefile, for MinGW and Cygwin gcc on MS-DOS ifndef USEDLL USEDLL = no |