📄 makefile.in
字号:
# This Makefile is free software; the Free Software Foundation# gives unlimited permission to copy, distribute and modify it.CC = @CC@CXX = @CXX@CXXCPP = @CXXCPP@AWK = @AWK@# WARNINGS = -Wall -Wwrite-strings# WARNINGS = -woff 3303# LFLAGS = -woff 1167 -woff 1110 -woff 3322CFLAGS = -g $(WARNINGS) -I. @CPPFLAGS@CXXFLAGS = $(CFLAGS)LIBS = -g @LIBS@.SUFFIXES: .cpp.cpp.o: $(CXX) $(CXXFLAGS) -c $<CLASSES = \ Aflock.o \ EulerAngles.o \ FreeWRLinputDeviceApp.o \ InputDevice.o \ Matrix.o \ Quaternion.o \ TransformMode.o \ WriteData.o \ main.o \ xerrorhandler.o \ InputDeviceCommandline.oOBJS1 = \ mysnprintf.o \ miniswt.oOBJS = $(CLASSES) $(OBJS1) SRCS2 = $(OBJS1:.o=.c)SRCS1 = $(CLASSES:.o=.cpp) FreeWRLduneInputDevice: $(OBJS) $(CXX) $(CXXFLAGS) $(OBJS) $(LIBS) -o $@ sh -c "if test `uname` = IRIX64 ; then tag 0x00ff1a05 $@ ; fi" sh -c "if test `uname` = IRIX ; then tag 0x00ff1a05 $@ ; fi"configure: configure.in autoconfclean: rm -rf $(OBJS) Makefile.bak autom4te.cache \ config.cache config.log config.status core iifiles ii_files \ mysnprintftest joysticktest spaceballtest aflocktestrealclean: clean rm -f FreeWRLduneInputDevice mysnprintftest: mysnprintf.c $(CC) -g -DTEST_SNPRINTF -DHAVE_SNPRINTF=1 -o $@ mysnprintf.c -lmjoysticktest: InputDevice.cpp mysnprintf.o $(CXX) $(CXXFLAGS) -g -DTEST_JOYSTICK -DLINUXJOYSTICK=1 \ -o $@ InputDevice.cpp mysnprintf.o $(LIBS)spaceballtest: InputDevice.cpp mysnprintf.o $(CXX) $(CXXFLAGS) -g -DTEST_SPACEBALL -DHAVE_LIBSBALL=1 \ -o $@ InputDevice.cpp mysnprintf.o $(LIBS) -lsballaflocktest: InputDevice.cpp Aflock.o mysnprintf.o $(CXX) $(CXXFLAGS) -g -DTEST_AFLOCK -DHAVE_AFLOCK=1 \ -o $@ InputDevice.cpp Aflock.o mysnprintf.o $(LIBS)depend: cp Makefile Makefile.bak $(AWK) '{ print } /^# DO NOT DELETE THIS LINE/ { print ""; exit }' < Makefile.bak > Makefile if test "$(CXX)" = "c++" ; then \ mkdep="g++ -MM";\ else \ if test "`uname`" = "SunOS" ; then\ mkdep="$(CXX) -xM1";\ else\ mkdep="$(CXX) -M";\ fi\ fi;\ $$mkdep $(CXXFLAGS) $(SRCS1) $(SRCS2) >> Makefile# DO NOT DELETE THIS LINE -- make depend depends on it.
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -