mirror of
https://github.com/edeproject/ede.git
synced 2023-08-10 21:13:03 +03:00
22 lines
280 B
Makefile
22 lines
280 B
Makefile
|
|
CPPFILES = efinder.cpp eglob.cpp
|
|
TARGET = efinder
|
|
|
|
POFILES = locale/ru.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
|
|
|