summaryrefslogtreecommitdiffstats
path: root/tools/Makefile
blob: 92f621f51e89a6104babbd9365741d756e3f1e44 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#             __________               __   ___.
#   Open      \______   \ ____   ____ |  | _\_ |__   _______  ___
#   Source     |       _//  _ \_/ ___\|  |/ /| __ \ /  _ \  \/  /
#   Jukebox    |    |   (  <_> )  \___|    < | \_\ (  <_> > <  <
#   Firmware   |____|_  /\____/ \___  >__|_ \|___  /\____/__/\_ \
#                     \/            \/     \/    \/            \/
# $Id$
#
CFLAGS := -O -s -ansi

TARGETS := scramble descramble sh2d

all: $(TARGETS)

scramble: scramble.c

descramble: descramble.c

sh2d: sh2d.c

clean:
	rm -f $(TARGETS) *~