makefile 415 B

12345678910111213141516
  1. #
  2. # Copyright (c) 2008 - 2009, Apple Inc. All rights reserved.<BR>
  3. #
  4. # SPDX-License-Identifier: BSD-2-Clause-Patent
  5. #
  6. all: GenerateImage replace
  7. GenerateImage: generate_image.c
  8. $(CC) $(CCFLAGS) $(LDFLAGS) -o GenerateImage.exe generate_image.c
  9. replace: replace.c
  10. $(CC) $(CCFLAGS) $(LDFLAGS) -o replace.exe replace.c
  11. clean:
  12. del GenerateImage.exe generate_image.obj replace.exe replace.obj