File: Imakefile

package info (click to toggle)
glut 3.6-4
  • links: PTS
  • area: main
  • in suites: hamm
  • size: 9,084 kB
  • ctags: 15,234
  • sloc: ansic: 131,032; makefile: 2,129; ada: 2,012; yacc: 473; fortran: 290; lex: 131; sed: 49; csh: 38
file content (29 lines) | stat: -rw-r--r-- 642 bytes parent folder | download | duplicates (5)
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

/* Copyright (c) Mark J. Kilgard, 1994. */

#include "../../../Glut.cf"

TARGETS = gliq

SRCS = board.c game.c gliq.c pick.c score.c tb.c trackball.c

AllTarget($(TARGETS))

NormalGlutProgramTarget(gliq,board.o game.o gliq.o pick.o score.o tb.o trackball.o)

LinkFile(trackball.c, ../../examples/trackball.c)
LinkFile(trackball.h, ../../examples/trackball.h)

trackball.o: trackball.h
tb.o: trackball.h
gliq.h: trackball.h
board.c: gliq.h
game.c: gliq.h
gliq.c: gliq.h
pick.c: gliq.h
score.c: gliq.h

/* some old imake configs do setup "make depend" dependencies on linked files */
depend:: trackball.c trackball.h tb.c tb.h

DependTarget()