File: Imakefile

package info (click to toggle)
xflip 1.01-28
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye
  • size: 184 kB
  • sloc: ansic: 895; makefile: 11
file content (16 lines) | stat: -rw-r--r-- 387 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
OBJS1 = meltdown.o
OBJS2 = flip.o

LOCAL_LIBRARIES = $(XLIB)

PROGRAMS = meltdown flip

AllTarget($(PROGRAMS))

XCOMM debian likes all games in /usr/games.
BINDIR = /usr/games

NormalProgramTarget(meltdown, $(OBJS1), , , $(LOCAL_LIBRARIES))
NormalProgramTarget(flip, $(OBJS2), , , $(LOCAL_LIBRARIES))
InstallProgram(meltdown,$(PREFIX)/$(BINDIR))
InstallProgram(flip,$(PREFIX)/$(BINDIR))