File: Makefile.lnx

package info (click to toggle)
hfsprogs 332.25-8
  • links: PTS
  • area: main
  • in suites: squeeze
  • size: 6,424 kB
  • ctags: 7,768
  • sloc: ansic: 58,114; makefile: 59
file content (12 lines) | stat: -rw-r--r-- 217 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
CFILES = hfs_endian.c makehfs.c newfs_hfs.c
OFILES = $(CFILES:.c=.o)

all: newfs_hfs

newfs_hfs: $(OFILES)
	$(CC) $(CFLAGS) $(LDFLAGS) -o $@ $(OFILES) -lcrypto

clean:
	$(RM) newfs_hfs $(OFILES)

.PHONY : FORCE clean