meep

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs

Makefile (165B)


      1 all: meep
      2 
      3 meep: meep.c Makefile
      4 	gcc `pkg-config --cflags libnotify x11 xi` meep.c `pkg-config --libs libnotify x11 xi` -o meep
      5 
      6 clean:
      7 	rm meep
      8 
      9 .phony: all clean