From 37e09437c2f20ac269f8d2b7f9c7f7cd325f0585 Mon Sep 17 00:00:00 2001 From: makefu Date: Sat, 20 Aug 2011 23:21:48 +0200 Subject: oncology: initial commit oncology will analyse the current krebs status --- oncology/dpfhack_display/Makefile | 72 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 72 insertions(+) create mode 100644 oncology/dpfhack_display/Makefile (limited to 'oncology/dpfhack_display/Makefile') diff --git a/oncology/dpfhack_display/Makefile b/oncology/dpfhack_display/Makefile new file mode 100644 index 00000000..c6c32e4f --- /dev/null +++ b/oncology/dpfhack_display/Makefile @@ -0,0 +1,72 @@ +DISTVERSION = 0.12devel + +CURDIR = $(shell pwd) + +# Make sure this path is correct. Needs to point to dpf.h and libdpf.a +DPFLIB = dpflib +PYDPF = python + +FILES = Makefile lcd4linux-svn1142-dpf.patch README Changelog + +ifndef DESTDIR +DESTDIR = /tmp +endif + +default: $(DPFLIB)/libdpf.a + -[ -e src ] && (cd src; ./buildall.sh) + $(MAKE) -C $(PYDPF) install + +all: default lcd4linux/lcd4linux + +$(DPFLIB)/libdpf.a: + $(MAKE) -C $(DPFLIB) install + +lcd4linux/lcd4linux: $(DPFLIB)/libdpf.a + ./build-dpf-lcd4linux.sh $(CURDIR) + +dist: installdist + tar cfz /tmp/dpfhack-$(DISTVERSION).tgz --numeric-owner -C $(DESTDIR) dpf + + +PYSCRIPTS += detect.py fulldump.py profiles.py hackit.py +PYSCRIPTS += chartbl.py update.py + +LIBFILES += Makefile dpflib.c fwload.c rawusb.c +LIBFILES += sglib.h dpf.h + +FILES += fw/README unixdll.mk +FILES += $(PYDPF)/Makefile $(PYDPF)/py_device.c +FILES += include/usbuser.h include/flash.h +FILES += $(LIBFILES:%=$(DPFLIB)/%) +FILES += $(wildcard src/p_*.s) $(wildcard src/jmptbl*.s) + +FILES += reverse/common.in reverse/dump.py reverse/Makefile reverse/README + +DPFINST = $(DESTDIR)/dpf + +installdist: + install -d $(DPFINST) + install -d $(DPFINST)/include + install -d $(DPFINST)/reverse + install -d $(DPFINST)/src + install -d $(DPFINST)/fw + install -d $(DPFINST)/dpflib + install -d $(DPFINST)/python + install -d $(DPFINST)/fw/hexfiles + install -m644 include/flash.h $(DPFINST)/include + cp -r fw/hexfiles $(DPFINST)/fw + install -m644 fw/font4x8.bin $(DPFINST)/fw + install -m755 $(PYSCRIPTS:%=fw/%) $(DPFINST)/fw + install -m755 build-dpf-lcd4linux.sh $(DPFINST) + for i in $(FILES); do \ + install -m644 $$i $(DPFINST)/$$i; \ + done + install -m600 dpf.conf $(DPFINST) + install -m600 dpfbig.conf $(DPFINST) + cd $(DPFINST)/fw; ln -sf ../Debug . + +clean: + rm -fr $(DPFINST) + $(MAKE) -C $(DPFLIB) clean + $(MAKE) -C $(PYDPF) clean + -[ -e lcd4linux/Makefile ] && (cd lcd4linux; make distclean) -- cgit v1.2.3