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

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