diff options
| author | Ujjwal Verma <ujjwalverma1111@gmail.com> | 2017-08-31 04:34:00 +0530 |
|---|---|---|
| committer | Ujjwal Verma <ujjwalverma1111@gmail.com> | 2017-08-31 04:34:00 +0530 |
| commit | 897a9b0a15e5d92b1aca5efd4ba843875722a4fb (patch) | |
| tree | 71454969ae11bf507c4858334ef467cdb05bd9b7 /Makefile | |
| parent | e6fe93529745f1d7da17f5f9f0eaccbf1c17ccae (diff) | |
Added Makefile
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..ac6981a --- /dev/null +++ b/Makefile @@ -0,0 +1,16 @@ +CC = gcc +CFLAGS= -g -Wall +INCLUDE = -L /usr/lib/x86_64-linux-gnu +LIBS = -lX11 -lXext -lXrender + +all: + ${CC} xwinwrap.c ${CFLAGS} ${INCLUDE} ${LIBS} -o xwinwrap + +install: + install xwinwrap '/usr/local/bin' + +uninstall: + rm -f '/usr/local/bin/xwinwrap' + +clean: + rm -f xwinwrap |
