removed more old libs
[TestXSLT.git] / libiconv / src / Makefile.os2
diff --git a/libiconv/src/Makefile.os2 b/libiconv/src/Makefile.os2
deleted file mode 100644 (file)
index cd8cbd2..0000000
+++ /dev/null
@@ -1,49 +0,0 @@
-# Makefile for libiconv/src, OS2/EMX specific
-#
-#      requires EMX/GCC development environment and
-#      GNU fileutils and GNU textutils installed
-#
-
-#### Start of system configuration section. ####
-
-# Programs used by "make":
-CC = gcc
-CFLAGS = -O2 -Zmtd
-INCLUDES = -I. -I../include
-
-# Directories used by "make install":
-prefix = @prefix@
-exec_prefix = $(prefix)
-bindir = $(exec_prefix)/bin
-
-#### End of system configuration section. ####
-
-srcdir = .
-
-.SUFFIXES: .obj .o
-
-all : iconv.exe
-
-iconv.exe : iconv.c
-       $(CC) $(INCLUDES) -I../lib $(CFLAGS) iconv.c ../lib/iconv.a
-       copy ..\lib\iconv.dll iconv.dll
-
-install : all force
-       cp -i iconv.exe $(bindir)/iconv.exe
-
-uninstall : force
-       rm -f $(bindir)/iconv.exe
-
-check : all
-
-mostlyclean : clean
-
-clean : force
-       rm -f *.obj *.dll *.exe core
-
-distclean : clean
-       rm -f Makefile
-
-maintainer-clean : distclean
-
-force :