OSDN Git Service

2013.10.24
[uclinux-h8/uClinux-dist.git] / lib / libidn / makefile
1 #
2 # Build using configure.
3 #
4
5 all: build/Makefile
6         $(MAKE) -C build
7
8 build/Makefile: makefile
9         -chmod u+x configure
10         -rm -rf build
11         -mkdir build
12         ( \
13                 cd build; \
14                 CC="$(CC) $(CFLAGS)" \
15                 LDFLAGS="$(LDFLAGS)" \
16                 LIBS="$(LDLIBS)" \
17                 ac_cv_locale_works=yes \
18                         sh ../configure $(CONFIGURE_OPTS) \
19                                 --enable-dependency-tracking \
20                                 --disable-shared \
21                         ; \
22         )
23
24 clean:
25         rm -rf build
26
27 romfs: