File: Makefile

package info (click to toggle)
partman-crypto 135
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 3,272 kB
  • sloc: sh: 1,874; ansic: 174; makefile: 29
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