File: Makefile

package info (click to toggle)
aboot 0.9-1
  • links: PTS
  • area: main
  • in suites: woody
  • size: 692 kB
  • ctags: 1,294
  • sloc: ansic: 7,994; asm: 309; makefile: 210
file content (20 lines) | stat: -rw-r--r-- 414 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
CC	= gcc
CFLAGS	= -g -O2 -Wall -I. -I../include $(CPPFLAGS)
LDFLAGS	= -g
PGMS	= e2writeboot isomarkboot abootconf elfencap objstrip

EXEC_PREFIX = /usr

all:	$(PGMS)

install:	$(PGMS)
	install -s -c -o root -g root -m 755 $(PGMS) $(EXEC_PREFIX)/bin

clean:
	rm -f *~ *.o *.a core $(PGMS)

isomarkboot:	isomarkboot.o ../lib/isolib.o
e2writeboot:	e2writeboot.o e2lib.o bio.o

e2writeboot.o:	e2lib.h
e2lib.o: e2lib.h