Skip to content
Permalink
1139b72d5e
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
29 lines (23 sloc) 527 Bytes
ifdef BUILD_KARMA
DIR := src/apps/karma
KARMASRC += \
$(DIR)/color.c \
$(DIR)/comm.c \
$(DIR)/details.c \
$(DIR)/fsview.c \
$(DIR)/karma.c \
$(DIR)/menu.c \
$(DIR)/messages.c \
$(DIR)/prep.c \
$(DIR)/status.c \
$(DIR)/traffic.c \
$(DIR)/units.c
KARMA := $(DIR)/karma
# add GTK include dirs and libs
MODCFLAGS_$(DIR) := @GTKCFLAGS@
MODLDFLAGS_$(DIR) := @GTKLIBS@
# gtk-2.0 has many bad prototypes
ifdef GNUC
MODCFLAGS_$(DIR) += -Wno-strict-prototypes
endif
endif # BUILD_KARMA