mirror of
https://github.com/google/sandboxed-api.git
synced 2024-03-22 13:11:30 +08:00
15 lines
233 B
Makefile
15 lines
233 B
Makefile
CXXFLAGS ?= -std=c++17
|
|
|
|
pffft_main: test_pffft.o libpffft.a
|
|
$(CXX) -o $@ $(CXXFLAGS) $(LDFLAGS) $^
|
|
|
|
libpffft.a: pffft.o fftpack.o
|
|
ar rcs $@ $^
|
|
|
|
pffft.c: pffft.h
|
|
|
|
fftpack.c: fftpack.h
|
|
|
|
.PHONY: clean
|
|
clean:
|
|
rm -f *.o *.a pffft_main
|