Makefile 100 B

12345678
  1. CC=gcc
  2. x11:
  3. $(CC) main_x11.c -pg -o game_x11 -lX11
  4. sdl:
  5. $(CC) main_sdl.c -pg -o game_sdl -lSDL2