mirror of
https://github.com/edeproject/ede.git
synced 2023-08-10 21:13:03 +03:00
71 lines
1.9 KiB
Makefile
71 lines
1.9 KiB
Makefile
|
AUTOMAKE_OPTIONS = foreign
|
||
|
|
||
|
CXXFLAGS = @CXXFLAGS@ -DSYSCONFDIR=\"$(sysconfdir)/pekwm\" -DDATADIR=\"$(datadir)\"
|
||
|
|
||
|
bin_PROGRAMS = pekwm
|
||
|
pekwm_SOURCES = \
|
||
|
Action.hh \
|
||
|
ActionHandler.cc ActionHandler.hh \
|
||
|
ActionMenu.cc ActionMenu.hh \
|
||
|
Atoms.cc Atoms.hh \
|
||
|
AutoProperties.cc AutoProperties.hh \
|
||
|
CfgParser.cc CfgParser.hh \
|
||
|
CfgParserKey.cc CfgParserKey.hh \
|
||
|
CfgParserSource.cc CfgParserSource.hh \
|
||
|
Compat.cc Compat.hh \
|
||
|
Completer.cc Completer.hh \
|
||
|
ColorHandler.cc ColorHandler.hh \
|
||
|
Client.cc Client.hh \
|
||
|
CmdDialog.cc CmdDialog.hh \
|
||
|
Config.cc Config.hh \
|
||
|
DecorMenu.cc DecorMenu.hh \
|
||
|
DockApp.cc DockApp.hh \
|
||
|
Exception.hh \
|
||
|
Frame.cc Frame.hh \
|
||
|
FontHandler.cc FontHandler.hh \
|
||
|
FrameListMenu.cc FrameListMenu.hh \
|
||
|
Harbour.cc Harbour.hh \
|
||
|
Handler.hh \
|
||
|
HarbourMenu.cc HarbourMenu.hh \
|
||
|
ImageHandler.cc ImageHandler.hh \
|
||
|
InputDialog.cc InputDialog.hh \
|
||
|
KeyGrabber.cc KeyGrabber.hh \
|
||
|
ManagerWindows.cc ManagerWindows.hh \
|
||
|
MenuHandler.cc MenuHandler.hh \
|
||
|
Observer.hh \
|
||
|
Observable.cc Observable.hh \
|
||
|
PDecor.cc PDecor.hh \
|
||
|
PFont.cc PFont.hh \
|
||
|
PMenu.cc PMenu.hh \
|
||
|
PTexture.hh \
|
||
|
PTexturePlain.cc PTexturePlain.hh \
|
||
|
PWinObj.cc PWinObj.hh \
|
||
|
PWinObjReference.cc PWinObjReference.hh \
|
||
|
PImage.cc PImage.hh \
|
||
|
PImageIcon.cc PImageIcon.hh \
|
||
|
PImageLoader.hh \
|
||
|
PImageLoaderJpeg.cc PImageLoaderJpeg.hh \
|
||
|
PImageLoaderPng.cc PImageLoaderPng.hh \
|
||
|
PImageLoaderXpm.cc PImageLoaderXpm.hh \
|
||
|
PixmapHandler.cc PixmapHandler.hh \
|
||
|
RegexString.cc RegexString.hh \
|
||
|
ParseUtil.hh \
|
||
|
PScreen.cc PScreen.hh \
|
||
|
ScreenResources.cc ScreenResources.hh \
|
||
|
StatusWindow.cc StatusWindow.hh \
|
||
|
SearchDialog.cc SearchDialog.hh \
|
||
|
Theme.cc Theme.hh \
|
||
|
TextureHandler.cc TextureHandler.hh \
|
||
|
Timer.hh Types.hh \
|
||
|
Util.cc Util.hh \
|
||
|
WORefMenu.cc WORefMenu.hh \
|
||
|
WindowManager.cc WindowManager.hh \
|
||
|
Workspaces.cc Workspaces.hh \
|
||
|
WorkspaceIndicator.cc WorkspaceIndicator.hh \
|
||
|
main.cc \
|
||
|
pekwm.hh
|
||
|
|
||
|
distclean-local:
|
||
|
rm -f *\~ .\#*
|
||
|
|