diff options
Diffstat (limited to 'src/xxd/Make_cyg.mak')
-rw-r--r-- | src/xxd/Make_cyg.mak | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/src/xxd/Make_cyg.mak b/src/xxd/Make_cyg.mak new file mode 100644 index 000000000..f04b7bfde --- /dev/null +++ b/src/xxd/Make_cyg.mak @@ -0,0 +1,27 @@ +# The most simplistic Makefile, for Cygnus gcc on MS-DOS + +ifndef USEDLL +USEDLL = no +endif + +ifeq (yes, $(USEDLL)) +DEFINES = +LIBS = -lc +else +DEFINES = -mno-cygwin +LIBS = +endif + +CFLAGS = -O2 -Wall -DWIN32 $(DEFINES) + +ifneq (sh.exe, $(SHELL)) +DEL = rm +else +DEL = del +endif + +xxd.exe: xxd.c + gcc $(CFLAGS) -s -o xxd.exe xxd.c $(LIBS) + +clean: + -$(DEL) xxd.exe |