blob: 20b052535375d5e2bb9c3452e0592a5d223562c5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
# __________ __ ___.
# Open \______ \ ____ ____ | | _\_ |__ _______ ___
# Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
# Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
# Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
# \/ \/ \/ \/ \/
# $Id$
#
CFLAGS =
TARGETS = scramble.exe descramble.exe sh2d.exe convbdf.exe
all: $(TARGETS)
$(OBJDIR)/%.exe: %.c
$(CC) $(CFLAGS) -c $< -o $@
clean:
del $(TARGETS) *.obj
|