Fix Makefile.msk_osx so that rand.c compiles.

git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@6502 ab8295b8-cf94-4d9e-aec4-7959e3be5d79
This commit is contained in:
Steven Franke 2016-02-28 00:07:45 +00:00
parent eb0fc08e0c
commit 96a271c575

View File

@ -1,4 +1,5 @@
# Compilers
# $(CC) -DRAND_FILE=\"`pwd`/randfile\" rand.c
CC = gcc
CXX = g++
FC = gfortran
@ -25,7 +26,7 @@ CFLAGS = -O2 -I.
all: msksim
OBJS = msksim.o alloc.o rcode.o channel.o dec.o enc.o \
OBJS = msksim.o alloc.o rcode.o dec.o enc.o \
intio.o blockio.o check.o open.o mod2dense.o \
mod2sparse.o mod2convert.o distrib.o rand.o gran.o
@ -33,7 +34,7 @@ msksim: $(OBJS)
$(FC) -o msksim $(OBJS)
rand.o:
$(CC) -DRAND_FILE=\"`pwd`/randfile\" rand.c
$(CC) $(CFLAGS) -DRAND_FILE=\"./randfile\" -c rand.c
clean:
$(RM) *.o msksim