12 lines
164 B
Makefile
12 lines
164 B
Makefile
|
bin_PROGRAMS = powerapp
|
||
|
|
||
|
powerapp_SOURCES = powerapp.c
|
||
|
|
||
|
AM_CFLAGS = -Os \
|
||
|
-g \
|
||
|
-Wall \
|
||
|
-Wno-unused-parameter \
|
||
|
-D_XOPEN_SOURCE \
|
||
|
-D_GNU_SOURCE \
|
||
|
-I../include
|