forked from hunter-packages/giflib
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathMakefile.unx
More file actions
33 lines (26 loc) · 755 Bytes
/
Makefile.unx
File metadata and controls
33 lines (26 loc) · 755 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
# (Note: this is not presently used, there's an autoconf build.)
#
# Top-level Unix makefile for the GIFLIB package
# Should work for all Unix versions
#
VERSION=3.0
all:
cd lib; make static shared
cd util; make all
install:
cd lib; make install-lib
cd util; make install-all
uninstall:
cd lib; make uninstall-lib
cd util; make uninstall-all
clean:
cd lib; make clean
cd util; make clean
rm -f giflib-$(VERSION).tar.gz core
giflib-$(VERSION).tar:
(cd ..; tar cvf giflib-$(VERSION)/giflib-$(VERSION).tar `cat giflib-$(VERSION)/MANIFEST | sed "/\(^\| \)/s// giflib-$(VERSION)\//g"`)
giflib-$(VERSION).tar.gz: giflib-$(VERSION).tar
gzip -f giflib-$(VERSION).tar
dist: Makefile
make giflib-$(VERSION).tar.gz
ls -l giflib-$(VERSION).tar.gz