* Makefile.in: Remove old from CFLAGS and move C*FLAGS so that they can be
manipulated by Makefile.common.
This commit is contained in:
parent
29413f0630
commit
065b05f2df
|
@ -1,3 +1,8 @@
|
||||||
|
2012-11-27 Christopher Faylor <me.cygwin2012@cgf.cx>
|
||||||
|
|
||||||
|
* Makefile.in: Remove old from CFLAGS and move C*FLAGS so that they can
|
||||||
|
be manipulated by Makefile.common.
|
||||||
|
|
||||||
2012-11-26 Christopher Faylor <me.cygwin2012@cgf.cx>
|
2012-11-26 Christopher Faylor <me.cygwin2012@cgf.cx>
|
||||||
|
|
||||||
* configure.ac: Rename from configure.in.
|
* configure.ac: Rename from configure.in.
|
||||||
|
|
|
@ -15,6 +15,10 @@ configure_args=@configure_args@
|
||||||
export CC:=@CC@
|
export CC:=@CC@
|
||||||
export CXX:=@CXX@
|
export CXX:=@CXX@
|
||||||
|
|
||||||
|
CFLAGS:=@CFLAGS@
|
||||||
|
override CXXFLAGS=@CXXFLAGS@
|
||||||
|
override CXXFLAGS+=-MMD -D__OUTSIDE_CYGWIN__ -DSYSCONFDIR="\"$(sysconfdir)\""
|
||||||
|
|
||||||
include ${srcdir}/../Makefile.common
|
include ${srcdir}/../Makefile.common
|
||||||
|
|
||||||
cygwin_build:=${target_builddir}/winsup/cygwin
|
cygwin_build:=${target_builddir}/winsup/cygwin
|
||||||
|
@ -38,9 +42,6 @@ INSTALL_DATA:=@INSTALL_DATA@
|
||||||
|
|
||||||
AR:=@AR@
|
AR:=@AR@
|
||||||
|
|
||||||
CFLAGS:=@CFLAGS@
|
|
||||||
override CXXFLAGS=@CXXFLAGS@
|
|
||||||
override CXXFLAGS+=-MMD -DHAVE_DECL_GETOPT=0 -D__OUTSIDE_CYGWIN__ -DSYSCONFDIR="\"$(sysconfdir)\""
|
|
||||||
|
|
||||||
OBJS:= cygserver.o client.o process.o msg.o sem.o shm.o threaded_queue.o \
|
OBJS:= cygserver.o client.o process.o msg.o sem.o shm.o threaded_queue.o \
|
||||||
transport.o transport_pipes.o \
|
transport.o transport_pipes.o \
|
||||||
|
|
Loading…
Reference in New Issue