diff options
author | EUcancER <root@euer.krebsco.de> | 2011-08-31 12:52:15 +0200 |
---|---|---|
committer | EUcancER <root@euer.krebsco.de> | 2011-08-31 12:52:15 +0200 |
commit | a2e4ac21444fd9af436039ba921e809cfca59ea2 (patch) | |
tree | e12c692527bc9b2b373cf0a4956f0ff458045cd7 /oncology/dpfhack_display/Makefile | |
parent | efe72ae286caa4ecf88edcbcb619fb0ceb886ca8 (diff) | |
parent | cf46dbc53b36772fb0461b9451337c118e705c55 (diff) |
Gigantor Merge!
Conflicts:
cholerab/news/Candidate - add Ante scriptum
cholerab/shirts/bestellliste - merged as theirs
oncology/dpfhack_display - now a submodule
add bug-fixing for adv_graphgen, as well as a Makefile
Diffstat (limited to 'oncology/dpfhack_display/Makefile')
-rw-r--r-- | oncology/dpfhack_display/Makefile | 72 |
1 files changed, 0 insertions, 72 deletions
diff --git a/oncology/dpfhack_display/Makefile b/oncology/dpfhack_display/Makefile deleted file mode 100644 index c6c32e4f..00000000 --- a/oncology/dpfhack_display/Makefile +++ /dev/null @@ -1,72 +0,0 @@ -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) |