diff options
author | Stevan Andjelkovic <stevan.andjelkovic@strath.ac.uk> | 2012-01-04 00:03:46 +0100 |
---|---|---|
committer | Stevan Andjelkovic <stevan.andjelkovic@strath.ac.uk> | 2012-01-04 00:03:46 +0100 |
commit | efd4787a57434f1134efd4164cb3d66d50b1bfbb (patch) | |
tree | 7995c8874a96379aa529c49281dc4c2a701ac3b4 | |
parent | 25cde77175b9511c955e4015116bc8978c97399e (diff) | |
download | xombrero-efd4787a57434f1134efd4164cb3d66d50b1bfbb.tar.gz |
Fix make files
-rw-r--r-- | Makefile | 3 | ||||
-rw-r--r-- | freebsd/Makefile | 4 |
2 files changed, 4 insertions, 3 deletions
diff --git a/Makefile b/Makefile index 5be51bc..2cb3b30 100644 --- a/Makefile +++ b/Makefile @@ -30,7 +30,8 @@ CLEANFILES += ${.CURDIR}/javascript.h xxxterm.cat1 xxxterm.core ${.CURDIR}/javascript.h: hinting.js input-focus.js perl ${.CURDIR}/js-merge-helper.pl ${.CURDIR}/hinting.js \ - ${.CURDIR}/input-focus.js > ${.CURDIR}/javascript.h + ${.CURDIR}/input-focus.js ${.CURDIR}/autoscroll.js \ + > ${.CURDIR}/javascript.h beforeinstall: install -m 755 -d ${PREFIX}/share/xxxterm diff --git a/freebsd/Makefile b/freebsd/Makefile index ebb51e6..5f4cc1f 100644 --- a/freebsd/Makefile +++ b/freebsd/Makefile @@ -16,8 +16,8 @@ CC?= cc all: ../javascript.h xxxterm ../javascript.h: ../js-merge-helper.pl ../hinting.js - perl ../js-merge-helper.pl ../hinting.js ../input-focus.js > \ - ../javascript.h + perl ../js-merge-helper.pl ../hinting.js ../input-focus.js \ + ../autoscroll.js > ../javascript.h xxxterm.o: ../xxxterm.o |