mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2024-11-04 08:21:17 -05:00
31 lines
641 B
Makefile
31 lines
641 B
Makefile
CC = gcc
|
|
#CC = clang-3.5
|
|
FC = gfortran
|
|
|
|
CFLAGS= -I/usr/include -Wall -Wno-missing-braces -O3 -ffast-math
|
|
LDFLAGS = -L/usr/lib
|
|
FFLAGS = -O2 -Wall -Wno-conversion
|
|
LIBS = -lfftw3f -lm -lgfortran
|
|
|
|
# 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 = wsprsim_utils.h wsprd_utils.h fano.h jelinek.h nhash.h
|
|
OBJS1 = wsprd.o wsprsim_utils.o wsprd_utils.o tab.o fano.o jelinek.o nhash.o indexx.o osdwspr.o
|
|
wsprd: $(OBJS1)
|
|
$(CC) -o $@ $^ $(CFLAGS) $(LDFLAGS) $(LIBS)
|
|
|
|
clean:
|
|
rm *.o wsprd
|