File: Makefile.lnx

package info (click to toggle)
hfsprogs 540.1.linux3-5
  • links: PTS, VCS
  • area: non-free
  • in suites: bookworm
  • size: 2,532 kB
  • sloc: ansic: 33,396; makefile: 87
file content (10 lines) | stat: -rw-r--r-- 164 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
CFILES = data.c runtime.c
OFILES = $(CFILES:.c=.o)

libBlocksRunTime.a: $(OFILES)
	ar rc $@ $?

all: libBlocksRunTime.a

clean:
	$(RM) $(OFILES) libBlocksRunTime.a