File: Makefile

package info (click to toggle)
partman-crypto 88
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 2,740 kB
  • ctags: 58
  • sloc: sh: 1,689; ansic: 132; makefile: 20
file content (9 lines) | stat: -rw-r--r-- 139 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
CFLAGS = -Wall -Os -s
STRIP = strip

blockdev-wipe: blockdev-wipe.c
	$(CC) $(CFLAGS) -o $@ $<
	$(STRIP) -s $@

clean:
	rm -f blockdev-wipe