You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
CFLAGS = -Wall -O2 -g
|
|
CFLAGS_LOCAL = -Wall -O2 -g -I. -I../..
|
|
LDFLAGS =
|
|
OBJ = dvb_print_si dvb_gen_si dvb_ecmg dvb_ecmg_test mpeg_print_pcr rtp_check_seqnum
|
|
|
|
ifeq "$(shell uname -s)" "Darwin"
|
|
LDFLAGS += -liconv
|
|
# Prevent generation of .dSYM debug directories
|
|
CFLAGS += -gstabs
|
|
CFLAGS_LOCAL += -gstabs
|
|
endif
|
|
|
|
all: $(OBJ)
|
|
|
|
%: %.c
|
|
$(CC) $(CFLAGS) $(LDFLAGS) -o $@ $<
|
|
|
|
local: CFLAGS = $(CFLAGS_LOCAL)
|
|
local: all
|
|
|
|
clean:
|
|
rm -rf $(OBJ)
|