File: Makefile

package info (click to toggle)
grub-installer 1.117
  • links: PTS, VCS
  • area: main
  • in suites: jessie-kfreebsd
  • size: 1,892 kB
  • sloc: sh: 1,423; ansic: 125; makefile: 15
file content (12 lines) | stat: -rw-r--r-- 230 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
CFLAGS := -Os -g -Wall

all: ensure-active prep-bootdev

ensure-active: ensure-active.c
	$(CC) $(CFLAGS) $^ -o $@ -lparted

prep-bootdev: prep-bootdev.c
	$(CC) $(CFLAGS) $^ -o $@ -lparted

clean:
	rm -f ensure-active prep-bootdev