File: Makefile.in

package info (click to toggle)
stereograph 0.30a-5
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 184 kB
  • ctags: 119
  • sloc: ansic: 1,606; makefile: 50
file content (23 lines) | stat: -rw-r--r-- 547 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# no need to change anything below here
#----------------------------------------------------------

SRC0 = stereograph.c renderer.c gfxio.c
OBJ0 = stereograph.o renderer.o gfxio.o

all: $(OBJ0) stereograph
make: all

stereograph: $(OBJ0)
stereograph.o: stereograph.c stereograph.h renderer.h gfxio.h globals.h
renderer.o: renderer.c renderer.h globals.h
gfxio.o: gfxio.c gfxio.h renderer.h globals.h


install:
	cp stereograph $(DESTDIR)/usr/bin/stereograph

clean:
	rm -f $(OBJ0) stereograph core

un-install:
	rm $(DESTDIR)/usr/bin/stereograph