Fix compile flags order (-lX11 moved to the end)

This commit is contained in:
Marek Marczykowski-Górecki 2014-11-11 01:22:26 +01:00
parent da6f6bd22b
commit 9bb9e8d9e5

View File

@ -10,7 +10,7 @@ all: xenstore-watch python close-window
xenstore-watch: xenstore-watch.o
$(CC) -o xenstore-watch xenstore-watch.o -lxenstore
close-window: close-window.c
$(CC) -lX11 -o $@ $<
$(CC) -o $@ $< -lX11
python:
python -m compileall .
python -O -m compileall .