File: Makefile

package info (click to toggle)
regionset 0.2-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 176 kB
  • sloc: ansic: 688; makefile: 21
file content (20 lines) | stat: -rw-r--r-- 381 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
# Makefile for "regionset" utility
# -- preliminary makefile -- 
# there will be a config/automake solution.
# this one works for now, more or less
#
# cleanups by Mirko Dlle <cooper@linvdr.org>
#

CC = gcc -Wall
MAKE = make

all: regionset
.PHONY : all

regionset: regionset.c dvd_udf.h dvd_udf.c
	$(CC) -o regionset regionset.c dvd_udf.c

.PHONY : clean
clean:
	rm -f regionset