summaryrefslogtreecommitdiff
path: root/utils/wpseditor/screenshot/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'utils/wpseditor/screenshot/Makefile')
-rw-r--r--utils/wpseditor/screenshot/Makefile29
1 files changed, 0 insertions, 29 deletions
diff --git a/utils/wpseditor/screenshot/Makefile b/utils/wpseditor/screenshot/Makefile
deleted file mode 100644
index f9309f58a5..0000000000
--- a/utils/wpseditor/screenshot/Makefile
+++ /dev/null
@@ -1,29 +0,0 @@
1# __________ __ ___.
2# Open \______ \ ____ ____ | | _\_ |__ _______ ___
3# Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
4# Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
5# Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
6# \/ \/ \/ \/ \/
7# $Id$
8#
9ROOT=../../..
10
11CC = gcc
12RM = rm -f
13
14COMMON = main.c gd_bmp.c
15
16INCLUDE = -I ../libwps/src \
17 -I $(ROOT)/apps/gui \
18 -I $(ROOT)/firmware/export \
19 -I $(ROOT)/apps/recorder \
20 -I $(ROOT)/apps \
21 -I .
22
23CFLAGS = -g -Wall
24
25all:
26 $(CC) $(INCLUDE) $(CFLAGS) $(COMMON) -rdynamic -ldl -lgd -lpng -o screenshot
27
28clean:
29 $(RM) screenshot