summaryrefslogtreecommitdiff
path: root/Makefile
blob: 1bb7b0fac7e2962612ee4b20c3f05f3fb7644748 (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
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