File: Makefile.am

package info (click to toggle)
forensics-colorize 1.1-7
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, sid, trixie
  • size: 2,320 kB
  • sloc: ansic: 669; makefile: 26; sh: 18
file content (20 lines) | stat: -rw-r--r-- 373 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
SUBDIRS = src

nice:
	rm -f *~

preflight:
	@grep RBF ${SUBDIRS}/*.c ${SUBDIRS}/*.h ${SUBDIRS}/*.1 \
		  AUTHORS README.md NEWS TODO ChangeLog

windows:
	make distclean
	./configure --host=i686-w64-mingw32
	make
	rm -rf $(distdir)
	mkdir -p $(distdir)
	cp src/*.exe $(distdir)
	i686-w64-mingw32-strip $(distdir)/*.exe
	zip -r9 $(distdir).zip $(distdir)
	rm -rf $(distdir)