summaryrefslogtreecommitdiff
path: root/core/opiealarm/Makefile
authorsandman <sandman>2002-05-31 03:55:42 (UTC)
committer sandman <sandman>2002-05-31 03:55:42 (UTC)
commitbf13813d8c277a0bb9baf121e1a6ddbaa1e1dd8e (patch) (side-by-side diff)
tree1d60d5ebc7447340a629bae6344995106921f0e8 /core/opiealarm/Makefile
parent460454a3a117afafde6094da6a4e12625f880908 (diff)
downloadopie-bf13813d8c277a0bb9baf121e1a6ddbaa1e1dd8e.zip
opie-bf13813d8c277a0bb9baf121e1a6ddbaa1e1dd8e.tar.gz
opie-bf13813d8c277a0bb9baf121e1a6ddbaa1e1dd8e.tar.bz2
Initial check in of opiealarm/opieatd
This is a (tiny) replacement for ipaqalarm/qpe2uschedule/uscheduled Made w2k-ppp only claim the needed files (not the whole etc dir)
Diffstat (limited to 'core/opiealarm/Makefile') (more/less context) (ignore whitespace changes)
-rw-r--r--core/opiealarm/Makefile26
1 files changed, 26 insertions, 0 deletions
diff --git a/core/opiealarm/Makefile b/core/opiealarm/Makefile
new file mode 100644
index 0000000..e988abf
--- a/dev/null
+++ b/core/opiealarm/Makefile
@@ -0,0 +1,26 @@
+
+DESTDIR=../../bin
+
+CROSS:=arm-linux-
+CC :=$(CROSS)gcc
+LD :=$(CROSS)gcc
+STRIP:=$(CROSS)strip
+
+CFLAGS:=-O2
+LDFLAGS:=
+
+all: $(DESTDIR)/opiealarm $(DESTDIR)/opieatd
+
+$(DESTDIR)/opiealarm: opiealarm.c
+ $(CC) $(CFLAGS) opiealarm.c -o $(DESTDIR)/opiealarm $(LDFLAGS)
+ $(STRIP) -s $(DESTDIR)/opiealarm
+ chmod u+s $(DESTDIR)/opiealarm
+ chown root $(DESTDIR)/opiealarm 2>/dev/null || echo -e "\nopiealarm must be owned by root to work correctly.\n"
+
+$(DESTDIR)/opieatd: opieatd
+ cp opieatd $(DESTDIR)/opieatd
+ chmod +x $(DESTDIR)/opieatd
+
+clean:
+ -rm -f *~ core
+