summaryrefslogtreecommitdiff
path: root/Makefile
blob: 1b7a28aa20b1a8de21884c2ce8c75d56e9079036 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
CFLAGS=-O2 -g -Wall -W `pkg-config --cflags librtlsdr`
LIBS=`pkg-config --libs librtlsdr` -lpthread -lm
CC=gcc
PROGNAME=gascop

all: gascop

%.o: %.c
	$(CC) $(CFLAGS) -c $<

gascop: gascop.o
	$(CC) -g -o gascop gascop.o $(LIBS)

clean:
	rm -f *.o gascop