File: makefile

package info (click to toggle)
rtklib 2.4.3%2Bdfsg1-2.1
  • links: PTS
  • area: main
  • in suites: bullseye
  • size: 41,796 kB
  • sloc: cpp: 51,592; ansic: 50,584; fortran: 987; makefile: 861; sh: 45
file content (20 lines) | stat: -rw-r--r-- 350 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# makefile for gencrc

BINDIR = /usr/local/bin
SRC    = ../../../src
CFLAGS = -Wall -O3 -ansi -pedantic
LDLIBS  = -lm

all        : gencrc genxor genmsk
gencrc     : gencrc.o
genxor     : genxor.o
genmsk     : genmsk.o

clean:
	rm -f gencrc genxor genmsk *.o

test:
	./gencrc -16 > crc16.c
	./gencrc -24 > crc24.c
	./genxor > xor.c
	./genmsk > msk.c