mirror of
https://github.com/edeproject/ede.git
synced 2023-08-10 21:13:03 +03:00
65018f75b7
emenueditor
23 lines
376 B
Makefile
Executable File
23 lines
376 B
Makefile
Executable File
|
|
CPPFILES = elauncher.cpp ../edelib2/Util.cpp ../edelib2/Config.cpp ../edelib2/process.cpp ../edelib2/pty.cpp
|
|
TARGET = elauncher
|
|
|
|
POFILES = locale/ru.po\
|
|
locale/sr.po\
|
|
locale/sk.po\
|
|
locale/hu.po\
|
|
|
|
include ../makeinclude
|
|
|
|
install:
|
|
$(INSTALL_PROGRAM) $(TARGET) $(bindir)
|
|
$(INSTALL_LOCALE)
|
|
|
|
uninstall:
|
|
$(RM) $(bindir)/$(TARGET)
|
|
|
|
clean:
|
|
$(RM) $(TARGET)
|
|
$(RM) *.o
|
|
|