6 lines
110 B
Bash
6 lines
110 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
CFLAGS="-std=c99 -Wall -Wextra -Werror -fPIC"
|
||
|
PREFIX="/usr/local"
|
||
|
APP_LIBS="-lXmd -lXm -lXt -lX11"
|