mirror of
https://github.com/F5OEO/rpitx.git
synced 2026-03-03 07:04:09 +01:00
13 lines
233 B
Makefile
13 lines
233 B
Makefile
#Makefile
|
|
CC=gcc -pipe
|
|
CFLAGS=-Wall -g
|
|
OBJS=ssb_gen.o test_ssb.o
|
|
HEADERS=ssb_gen.h
|
|
LIBS=-lsndfile
|
|
|
|
|
|
%.o:%.c $(HEADERS) Makefile
|
|
$(CC) $(CFLAGS) -c $< -o $@
|
|
|
|
testssb:$(OBJS) $(HEADERS) test_ssb.o
|
|
$(CC) -o testssb $(OBJS) $(LIBS)
|