mirror of
https://git.sr.ht/~grimler/Heimdall
synced 2025-03-01 03:01:16 +00:00
28 lines
1.2 KiB
Makefile
28 lines
1.2 KiB
Makefile
AUTOMAKE_OPTIONS = subdir-objects
|
|
ACLOCAL_AMFLAGS = ${ACLOCAL_FLAGS}
|
|
AM_CPPFLAGS = $(DEPS_CFLAGS)
|
|
|
|
bin_PROGRAMS = heimdall
|
|
heimdall_SOURCES = source/BeginDumpPacket.h source/BridgeManager.cpp \
|
|
source/BridgeManager.h source/ControlPacket.h source/DeviceInfoPacket.h \
|
|
source/DeviceInfoResponse.h source/DumpPartFileTransferPacket.h \
|
|
source/DumpPartPitFilePacket.h source/DumpResponse.h source/EndFileTransferPacket.h \
|
|
source/EndModemFileTransferPacket.h source/EndPhoneFileTransferPacket.h \
|
|
source/FileTransferPacket.h source/FlashPartFileTransferPacket.h \
|
|
source/FlashPartPitFilePacket.h source/Heimdall.h \
|
|
source/InboundPacket.h source/InterfaceManager.cpp source/InterfaceManager.h \
|
|
source/main.cpp source/OutboundPacket.h source/Packet.h source/PitFilePacket.h \
|
|
source/PitFileResponse.h source/RebootDevicePacket.h source/ReceiveFilePartPacket.h \
|
|
source/ResponsePacket.h source/SendFilePartPacket.h source/SendFilePartResponse.h
|
|
heimdall_LDADD = $(DEPS_LIBS)
|
|
|
|
if LINUXTARGET
|
|
udevrulesdir = /lib/udev/rules.d
|
|
udevrules_DATA = 60-heimdall-galaxy-s.rules
|
|
|
|
install-data-hook:
|
|
sudo service udev reload
|
|
endif
|
|
|
|
dist_noinst_SCRIPTS = autogen.sh
|