-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile.orig
54 lines (38 loc) · 1.15 KB
/
Makefile.orig
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
VERSION=0.3a
CFLAGS=-Wall -O2 -g -DVERSION=\"$(VERSION)\" -I./lrmi-0.6
OBJS=atitvout.o ati.o vbeinfo.o vbecall.o mach64.o radeon.o
TAR=atitvout-$(VERSION).tar.gz
BINARY=atitvout
PACKAGE=atitvout
all: $(BINARY)
$(BINARY): $(OBJS)
make -C lrmi-0.6
$(CC) $(OBJS) lrmi-0.6/liblrmi.a -o $(BINARY)
strip: $(BINARY)
@du -h $(BINARY)
strip -s $(BINARY)
@du -h $(BINARY)
clean:
rm -f *.o $(BINARY) *~ README index.html *.tar.gz test.out
make -C lrmi-0.6 clean
install: strip
install -g root -o root -m 555 $(BINARY) /usr/local/sbin
deinstall:
rm -f /usr/local/sbin/$(BINARY)
README: README.in
sed s/VERSION/$(VERSION)/ < README.in > README
index.html: README
txt2html -t "$(PACKAGE) $(VERSION)" < README > index.html
html: index.html
$(TAR): clean README
tar -C.. --exclude=$(PACKAGE)/$(TAR) -czvf $(TAR) $(PACKAGE)
tar: $(TAR)
web: $(TAR) README
cp README $(TAR) ../../homepage/lennart/projects/$(PACKAGE)/ && $(MAKE) -C ../../homepage/lennart/projects/$(PACKAGE)
upload: web
$(MAKE) -C ../../homepage/lennart upload
emacs:
emacs Makefile README.in *.h *.c &
test: $(BINARY)
./test.sh
.PHONY: test emacs upload web tar html deinstall install clean strip all