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
     5         kx 
     5         kx WARNINGS = -Wall -W -Wpointer-arith -Wbad-function-cast -Wcast-qual \
     5         kx            -Wstrict-prototypes -Wmissing-prototypes \
     5         kx            -Wmissing-declarations -Wnested-externs -Winline -Wcast-align
     5         kx 
     5         kx CFLAGS += -g $(WARNINGS)
     5         kx 
     5         kx all: netdate
     5         kx 
     5         kx netdate: netdate.o
     5         kx 
     5         kx install: netdate
     5         kx 	install -s netdate /usr/sbin/
     5         kx 	install -m 0644 netdate.8 /usr/man/man8/
     5         kx 
     5         kx clean:
     5         kx 	rm -f netdate *~ *.o core
     5         kx