mirror of
https://github.com/aportelli/LatAnalyze.git
synced 2024-11-10 08:55:37 +00:00
30 lines
560 B
Makefile
30 lines
560 B
Makefile
if CC_GNU
|
|
COM_CFLAGS = -Wall -W -pedantic
|
|
else
|
|
if CC_INTEL
|
|
COM_CFLAGS = -Wall
|
|
endif
|
|
endif
|
|
|
|
if CXX_GNU
|
|
COM_CXXFLAGS = -Wall -W -pedantic
|
|
else
|
|
if CXX_INTEL
|
|
COM_CXXFLAGS = -Wall
|
|
endif
|
|
endif
|
|
|
|
noinst_PROGRAMS = \
|
|
latan_sample_read\
|
|
latan_resample
|
|
|
|
latan_sample_read_SOURCES = sample_read.cpp
|
|
latan_sample_read_CFLAGS = -g -O2
|
|
latan_sample_read_LDFLAGS = -L../latan/.libs -llatan
|
|
|
|
latan_resample_SOURCES = resample.cpp
|
|
latan_resample_CFLAGS = -g -O2
|
|
latan_resample_LDFLAGS = -L../latan/.libs -llatan
|
|
|
|
ACLOCAL_AMFLAGS = -I .buildutils/m4
|