lib.rules revision 214501
133965Sjdpifndef CC
233965SjdpCC=gcc
389857Sobrienendif
489857Sobrien
589857Sobrienifndef CFLAGS
689857SobrienCFLAGS = -MMD -O2 -Wall -g
789857Sobrienendif
889857Sobrien
989857SobrienCFLAGS += -I.. -I../utils
1089857Sobrien
1189857Sobrien
1289857SobrienQ=@
1389857SobrienE=echo
1489857Sobrienifeq ($(V), 1)
1533965SjdpQ=
1633965SjdpE=true
1733965Sjdpendif
18218822Sdim
19130561Sobrien%.o: %.c
2033965Sjdp	$(Q)$(CC) -c -o $@ $(CFLAGS) $<
21218822Sdim	@$(E) "  CC " $<
2233965Sjdp