Change canonical name of BIG5HKSCS to BIG5-HKSCS.
[libiconv.git] / src / Makefile.os2
blob228219d4dfc9d8c3fecb80e7e35b09f2a5c154af
1 # Makefile for libiconv/src, OS2/EMX specific
3 #       requires EMX/GCC development environment and
4 #       GNU fileutils and GNU textutils installed
7 #### Start of system configuration section. ####
9 # Programs used by "make":
10 CC = gcc
11 CFLAGS = -O2 -Zmtd
12 INCLUDES = -I. -I../include
14 # Directories used by "make install":
15 prefix = @prefix@
16 exec_prefix = $(prefix)
17 bindir = $(exec_prefix)/bin
19 #### End of system configuration section. ####
21 srcdir = .
23 .SUFFIXES: .obj .o
25 all : iconv.exe
27 iconv.exe : iconv.c
28         $(CC) $(CFLAGS) $(INCLUDES) -I../lib iconv.c ../lib/iconv.a
29         copy ..\lib\iconv.dll iconv.dll
31 install : all force
32         cp -i iconv.exe $(bindir)/iconv.exe
34 uninstall : force
35         rm -f $(bindir)/iconv.exe
37 check : all
39 mostlyclean : clean
41 clean : force
42         rm -f *.obj *.dll *.exe core
44 distclean : clean
45         rm -f Makefile
47 maintainer-clean : distclean
49 force :