Makefile (296B)
1 # Generic Window Manager Menu makefile 2 # "Makefile" 3 # M. Yamanaka 4 # email: myamanaka@live.com 5 # website: csmyamanaka.com 6 # license: MIT (See included "LICENSE" file for details) 7 8 CC=gcc 9 FILES=gwmm.c 10 LFLG=-lX11 11 OUT=Gwmm 12 13 all: $(OUT) 14 15 $(OUT): $(FILES) 16 $(CC) $^ $(LFLG) -o $@ 17 18 clean: 19 rm -f $(OUT)