Skip to content

Commit

Permalink
Init commit.
Browse files Browse the repository at this point in the history
  • Loading branch information
BOOtak committed Mar 8, 2019
0 parents commit 58c4702
Show file tree
Hide file tree
Showing 7 changed files with 892 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
*.prc
*.bin
*.o
CrypticWatch
19 changes: 19 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
CC = m68k-palmos-gcc
CFLAGS = -O2 -IWristPDA_SDK_v1.3/Include

all: CrypticWatch.prc

CrypticWatch.prc: CrypticWatch bin.stamp
build-prc CrypticWatch.prc "CrypticWatch" Foss CrypticWatch *.bin

CrypticWatch: main.o
$(CC) $(CFLAGS) -o CrypticWatch main.o

main.o: main.c
$(CC) $(CFLAGS) -c main.c

bin.stamp: res.rcp res.h
pilrc res.rcp

clean:
-rm -f *.[oa] CrypticWatch *.bin *.stamp
Loading

0 comments on commit 58c4702

Please sign in to comment.