fltk/makefiles/makeinclude.mingw32
Michael R Sweet 1805e799c9 Updated mingw32 makeinclude file to use gcc instead of g++...
git-svn-id: file:///fltk/svn/fltk/trunk@228 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
1999-01-17 16:40:00 +00:00

32 lines
810 B
Plaintext

# Makeinclude file for the Cygwin B19 release of GCC for Windoze
# This will compile the code to directly call Windows interfaces
# and does not use the CYGWIN library.
# Thanks to Philipp Knirsch at Lucent and Carl Thompson
prefix =/usr/local
exec_prefix =${prefix}
bindir =${exec_prefix}/bin
includedir =${prefix}/include
libdir =${exec_prefix}/lib
srcdir =.
# compiler names:
CXX =g++
CC =gcc
# flags for C++ compiler:
CFLAGS =-Wall -O2 -DWIN32
CXXFLAGS =-Wall -O2 -DWIN32
# program to make the archive:
LIBNAME =libfltk.a
LIBCOMMAND =ar -ruv
RANLIB =ranlib
# libraries to link with:
LDLIBS =-lgdi32 -luser32 -lglu32 -lopengl32 -lmsvcrt -lwsock32 -lm -mwindows
INSTALL =/CYGNUS/B19/H-I386~1/BIN/install -c