diff options
author | Norbert Preining <norbert@preining.info> | 2019-09-02 13:46:59 +0900 |
---|---|---|
committer | Norbert Preining <norbert@preining.info> | 2019-09-02 13:46:59 +0900 |
commit | e0c6872cf40896c7be36b11dcc744620f10adf1d (patch) | |
tree | 60335e10d2f4354b0674ec22d7b53f0f8abee672 /dviware/epson/eps-0.2/Makefile |
Initial commit
Diffstat (limited to 'dviware/epson/eps-0.2/Makefile')
-rw-r--r-- | dviware/epson/eps-0.2/Makefile | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/dviware/epson/eps-0.2/Makefile b/dviware/epson/eps-0.2/Makefile new file mode 100644 index 0000000000..decca0695f --- /dev/null +++ b/dviware/epson/eps-0.2/Makefile @@ -0,0 +1,21 @@ +%.o: %.c + cc -x c++ -c -O $< + +BINDIR = /usr/local/bin + +all: LIB EPS + +EPS: + ( cd eps; $(MAKE) ) + +LIB: + ( cd lib; $(MAKE) ) + +install: + ( cd eps; $(MAKE) install BINDIR=${BINDIR} ) + +clean: + for dir in lib eps; do \ + ( cd $$dir; $(MAKE) clean ) \ + done + |