mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2024-11-01 16:13:57 -04:00
97704efba8
git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@6122 ab8295b8-cf94-4d9e-aec4-7959e3be5d79
25 lines
421 B
Makefile
25 lines
421 B
Makefile
srcdir = .
|
|
prefix = /usr/local
|
|
exec_prefix=${prefix}
|
|
CC=gcc
|
|
|
|
CFLAGS=-I/usr/local/include -Wall -O3
|
|
|
|
all: sfrsd
|
|
|
|
encode_rs_int.o: encode_rs.c
|
|
gcc -DBIGSYM=1 $(CFLAGS) -c -o $@ $^
|
|
|
|
decode_rs_int.o: decode_rs.c
|
|
gcc -DBIGSYM=1 $(CFLAGS) -c -o $@ $^
|
|
|
|
init_rs_int.o: init_rs.c
|
|
gcc -DBIGSYM=1 $(CFLAGS) -c -o $@ $^
|
|
|
|
sfrsd: sfrsd.o encode_rs_int.o decode_rs_int.o init_rs_int.o
|
|
gcc -g -o $@ $^
|
|
|
|
clean:
|
|
rm -f *.o *.a sfrsd
|
|
|