summaryrefslogtreecommitdiff
path: root/Makefile
blob: 5f9be51057f6d90905294a86c73f5c63a6ba9d43 (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` -lm -lpthread
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