mirror of
				https://github.com/saitohirga/WSJT-X.git
				synced 2025-11-03 21:40:52 -05:00 
			
		
		
		
	Update the Makefile
git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@2757 ab8295b8-cf94-4d9e-aec4-7959e3be5d79
This commit is contained in:
		
							parent
							
								
									f715ea6347
								
							
						
					
					
						commit
						03a1715525
					
				@ -5,7 +5,7 @@
 | 
			
		||||
CC = gcc
 | 
			
		||||
FC = g95
 | 
			
		||||
 | 
			
		||||
FFLAGS = -O0 -fbounds-check -Wall -Wno-precision-loss -fno-second-underscore
 | 
			
		||||
FFLAGS = -O2 -fbounds-check -Wall -Wno-precision-loss -fno-second-underscore
 | 
			
		||||
CFLAGS = -I. -fbounds-check -mno-stack-arg-probe
 | 
			
		||||
 | 
			
		||||
# Default rules
 | 
			
		||||
@ -20,7 +20,7 @@ CFLAGS = -I. -fbounds-check -mno-stack-arg-probe
 | 
			
		||||
%.o: %.F90
 | 
			
		||||
	${FC} ${FFLAGS} -c $<
 | 
			
		||||
 | 
			
		||||
all:    libjt9.a jt9sim.exe jt9.exe jt9code.exe
 | 
			
		||||
all:    libjt9.a jt9sim.exe jt9.exe jt9code.exe jt9test.exe
 | 
			
		||||
 | 
			
		||||
OBJS1 = pctile.o graycode.o sort.o ssort.o \
 | 
			
		||||
	unpackmsg.o igray.o unpackcall.o unpackgrid.o \
 | 
			
		||||
@ -37,9 +37,12 @@ libjt9.a: $(OBJS1)
 | 
			
		||||
	ar cr libjt9.a $(OBJS1) 
 | 
			
		||||
	ranlib libjt9.a
 | 
			
		||||
 | 
			
		||||
OBJS2 = jt9.o 
 | 
			
		||||
OBJS2 = jt9.o jt9a.o ipcomm.o sleep_msec.o
 | 
			
		||||
LIBS2 = -L'c:/QtSDK/Desktop/Qt/4.7.4/mingw/lib' -lQtCore4
 | 
			
		||||
jt9.exe: $(OBJS2) libjt9.a
 | 
			
		||||
	$(FC) -o jt9.exe $(OBJS2) libjt9.a ../libfftw3f_win.a 
 | 
			
		||||
	g++ -o jt9.exe $(OBJS2) $(LIBS2) libjt9.a ../libfftw3f_win.a \
 | 
			
		||||
	c:/MinGW/lib/libf95.a
 | 
			
		||||
	cp jt9.exe ../../wsjtx_install
 | 
			
		||||
 | 
			
		||||
OBJS3 = jt9sim.o 
 | 
			
		||||
jt9sim.exe: $(OBJS3) libjt9.a
 | 
			
		||||
@ -49,6 +52,10 @@ OBJS4 = jt9code.o
 | 
			
		||||
jt9code.exe: $(OBJS4) libjt9.a
 | 
			
		||||
	$(FC) -o jt9code.exe $(OBJS4) libjt9.a
 | 
			
		||||
 | 
			
		||||
OBJS5 = jt9test.o 
 | 
			
		||||
jt9test.exe: $(OBJS5) libjt9.a
 | 
			
		||||
	$(FC) -o jt9test.exe $(OBJS5) libjt9.a ../libfftw3f_win.a 
 | 
			
		||||
 | 
			
		||||
INCPATH = -I'c:/QtSDK/Desktop/Qt/4.7.4/mingw/include/QtCore' \
 | 
			
		||||
	 -I'c:/QtSDK/Desktop/Qt/4.7.4/mingw/include' \
 | 
			
		||||
	 -I'c:/QtSDK/Desktop/Qt/4.7.4/mingw/include/ActiveQt' \
 | 
			
		||||
@ -87,4 +94,4 @@ sec_midn.o: sec_midn.f90
 | 
			
		||||
.PHONY : clean
 | 
			
		||||
 | 
			
		||||
clean:
 | 
			
		||||
	rm -f *.o libjt9.a wsjtx.exe jt9sim.exe jt9.exe t1.exe t2.exe
 | 
			
		||||
	rm -f *.o libjt9.a wsjtx.exe jt9sim.exe jt9.exe jt9test.exe
 | 
			
		||||
 | 
			
		||||
@ -1,4 +1,4 @@
 | 
			
		||||
//-------------------------------------------------------------- MainWindow
 | 
			
		||||
//------------------------------------------------------------- MainWindow
 | 
			
		||||
#include "mainwindow.h"
 | 
			
		||||
#include "ui_mainwindow.h"
 | 
			
		||||
#include "devsetup.h"
 | 
			
		||||
 | 
			
		||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user