F5OEO-rpitx/src/ssbgen/Makefile

16 wiersze
237 B
Makefile
Czysty Zwykły widok Historia

2018-03-21 14:37:17 +00:00
#Makefile
CC=gcc -pipe
CFLAGS=-Wall -g
OBJS=ssb_gen.o test_ssb.o
HEADERS=ssb_gen.h
2018-06-14 09:37:51 +00:00
LIBS=-lsndfile
2018-03-21 14:37:17 +00:00
%.o:%.c $(HEADERS) Makefile
$(CC) $(CFLAGS) -c $< -o $@
testssb:$(OBJS) $(HEADERS) test_ssb.o
2018-06-14 09:37:51 +00:00
$(CC) -o testssb $(OBJS) $(LIBS)