Radix cross Linux

The main Radix cross Linux repository contains the build scripts of packages, which have the most complete and common functionality for desktop machines

452 Commits   2 Branches   1 Tag
Index: Makefile
===================================================================
--- Makefile	(nonexistent)
+++ Makefile	(revision 5)
@@ -0,0 +1,18 @@
+
+WARNINGS = -Wall -W -Wpointer-arith -Wbad-function-cast -Wcast-qual \
+           -Wstrict-prototypes -Wmissing-prototypes \
+           -Wmissing-declarations -Wnested-externs -Winline -Wcast-align
+
+CFLAGS += -g $(WARNINGS)
+
+all: netdate
+
+netdate: netdate.o
+
+install: netdate
+	install -s netdate /usr/sbin/
+	install -m 0644 netdate.8 /usr/man/man8/
+
+clean:
+	rm -f netdate *~ *.o core
+