Skip to content

Commit

Permalink
Simplify makefiles
Browse files Browse the repository at this point in the history
  • Loading branch information
teknoraver committed Jun 2, 2010
1 parent abaa5d9 commit ebbba62
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 50 deletions.
28 changes: 1 addition & 27 deletions libaacenc/Makefile
Expand Up @@ -6,33 +6,7 @@
################## user section: insert objlist here #######
LIB = libaacenc.a

SRCS = adj_thr.c \
band_nrg.c \
block_switch.c \
grp_data.c \
interface.c \
ms_stereo.c \
pre_echo_control.c \
psy_configuration.c \
psy_main.c \
spreading.c \
tns.c \
tns_param.c \
transform.c \
adj_thr.c \
dyn_bits.c \
line_pe.c \
qc_main.c \
quantize.c \
sf_estim.c \
stat_bits.c \
bit_cnt.c \
bitenc.c \
aacenc.c \
stprepro.c \
channel_map.c \
aac_ram.c \
aac_rom.c
SRCS=$(wildcard *.c)

OBJS = $(SRCS:.c=.o)

Expand Down
2 changes: 1 addition & 1 deletion libbitbuf/Makefile
Expand Up @@ -7,7 +7,7 @@
################## user section: insert objlist here #######
LIB=libbitbuf.a

SRCS=bitbuffer.c
SRCS=$(wildcard *.c)

OBJS = $(SRCS:.c=.o)

Expand Down
2 changes: 1 addition & 1 deletion libfr/Makefile
Expand Up @@ -7,7 +7,7 @@
################## user section: insert objlist here #######
LIB=libfr.a

SRCS=transcendent.c cfftn.o
SRCS=$(wildcard *.c)

OBJS = $(SRCS:.c=.o)

Expand Down
2 changes: 1 addition & 1 deletion libresamp/Makefile
Expand Up @@ -7,7 +7,7 @@
################## user section: insert objlist here #######
LIB=libresamp.a

SRCS=iir32resample.c resampler.c
SRCS=$(wildcard *.c)

OBJS = $(SRCS:.c=.o)

Expand Down
2 changes: 1 addition & 1 deletion libresamp/resampler.c
Expand Up @@ -10,7 +10,7 @@
#include "counters.h" /* the 3GPP instrumenting tool */

#define MAX_COEFF 32

//#define NEWIIR

struct IIR_PARAM{
const float *coeffIIRa;
Expand Down
20 changes: 1 addition & 19 deletions libsbrenc/Makefile
Expand Up @@ -6,25 +6,7 @@
################## user section: insert objlist here #######
LIB=libsbrenc.a

SRCS=code_env.c \
env_est.c \
env_bit.c \
fram_gen.c \
freq_sca.c \
nf_est.c \
qmf_enc.c \
tran_det.c \
mh_det.c \
sbr_rom.c \
sbr_ram.c \
invf_est.c \
sbr_misc.c \
bit_sbr.c \
sbr_main.c \
ton_corr.c \
ps_bitenc.c \
ps_enc.c \
hybrid.c
SRCS=$(wildcard *.c)

OBJS = $(SRCS:.c=.o)

Expand Down

0 comments on commit ebbba62

Please sign in to comment.