Makefile 94 B

1234567
  1. all: nvram
  2. nvram:
  3. $(CC) $(CFLAGS) -o $@ cli.c crc.c nvram.c $(LDFLAGS)
  4. clean:
  5. rm -f nvram