mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2024-11-01 08:07:10 -04:00
f9d0a1863a
This merge brings the WSPR feature development into the main line ready for release in a future v1.6 release. git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@5424 ab8295b8-cf94-4d9e-aec4-7959e3be5d79
31 lines
532 B
Makefile
31 lines
532 B
Makefile
CC = gcc
|
|
#CC = clang
|
|
FC = gfortran
|
|
|
|
FFLAGS = -O2 -Wall -Wno-conversion
|
|
CFLAGS= -Wall -Wno-missing-braces -O2
|
|
#LDFLAGS = -L/JTSDK/fftw3f
|
|
LIBS = c:/JTSDK/fftw3f/libfftw3-3.dll -lm
|
|
|
|
# Default rules
|
|
%.o: %.c $(DEPS)
|
|
${CC} ${CFLAGS} -c $<
|
|
%.o: %.f
|
|
${FC} ${FFLAGS} -c $<
|
|
%.o: %.F
|
|
${FC} ${FFLAGS} -c $<
|
|
%.o: %.f90
|
|
${FC} ${FFLAGS} -c $<
|
|
%.o: %.F90
|
|
${FC} ${FFLAGS} -c $<
|
|
|
|
all: wsprd
|
|
|
|
DEPS = fano.h
|
|
OBJS1 = wsprd.o wsprd_utils.o fano.o tab.o nhash.o
|
|
wsprd: $(OBJS1)
|
|
$(CC) -o $@ $^ $(CFLAGS) $(LDFLAGS) $(LIBS)
|
|
|
|
clean:
|
|
rm *.o wsprd
|