mirror of
https://github.com/edeproject/ede.git
synced 2023-08-10 21:13:03 +03:00
26 lines
728 B
Plaintext
26 lines
728 B
Plaintext
#
|
|
# $Id$
|
|
#
|
|
# Part of Equinox Desktop Environment (EDE).
|
|
# Copyright (c) 2009 EDE Authors.
|
|
#
|
|
# This program is licensed under terms of the
|
|
# GNU General Public License version 2 or newer.
|
|
# See COPYING for details.
|
|
|
|
SubDir TOP ede-panel applets start-menu ;
|
|
|
|
MENU_SRC = XdgMenuReader.cpp DesktopEntry.cpp MenuRules.cpp ;
|
|
|
|
if $(MENU_TESTS) {
|
|
Library libmenu : $(MENU_SRC) ;
|
|
ObjectC++Flags $(MENU_SRC) : -fPIC $(FLTKINCLUDE) -I [ FDirName $(TOP) ede-panel ] $(EDELIBINCLUDE) ;
|
|
|
|
PanelApplet start_menu : StartMenu.cpp : -L$(SUBDIR) -lmenu ;
|
|
|
|
EdeProgram ede-menu-spec-test : ede-menu-spec-test.cpp ;
|
|
LinkAgainstAsFirst ede-menu-spec-test : -L$(SUBDIR) -lmenu ;
|
|
} else {
|
|
PanelApplet start_menu : StartMenu.cpp $(MENU_SRC) ;
|
|
}
|