VIRT-PHY: Remove non-overridable CFLAGS "-g -O0"

If the user wants debugging / no optimziation, they can always pass the
related CFLAGS at ./configure time, there's no nee to have them
hard-coded in the actual Makefiles.

Change-Id: I6a2b30f946579bbd49bf66c4f59d160a975a1b56
This commit is contained in:
Harald Welte 2017-07-12 21:57:58 +02:00
parent 203f7e0c7f
commit 020186009c
2 changed files with 0 additions and 4 deletions

View File

@ -1,4 +1,2 @@
SUBDIRS = src
dist_doc_DATA = README
CFLAGS = "-g -O0"

View File

@ -1,8 +1,6 @@
AM_CFLAGS=-Wall $(LIBOSMOCORE_CFLAGS) $(LIBOSMOGSM_CFLAGS)
AM_CPPFLAGS = $(all_includes) -I$(top_srcdir)/include -I$(top_srcdir)/../layer23/include
CFLAGS = "-g -O0"
sbin_PROGRAMS = virtphy
virtphy_SOURCES = virtphy.c l1ctl_sock.c gsmtapl1_if.c l1ctl_sap.c virt_prim_pm.c virt_prim_fbsb.c virt_prim_rach.c virt_prim_data.c virt_prim_traffic.c virt_l1_sched_simple.c logging.c virt_l1_model.c shared/virtual_um.c shared/osmo_mcast_sock.c shared/common_util.c
virtphy_LDADD = $(LIBOSMOCORE_LIBS) $(LIBOSMOGSM_LIBS)