diff options
Diffstat (limited to 'src/xxd/Make_cyg.mak')
-rw-r--r-- | src/xxd/Make_cyg.mak | 28 |
1 files changed, 0 insertions, 28 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 |