Makefile 115 B

12345678
  1. CC = gcc
  2. test: test.c
  3. $(CC) `gtk-config --cflags` test.c -o test `gtk-config --libs`
  4. clean:
  5. rm -f *.o test