CRUX-ARM : Home

Home :: Documentation :: Download :: Development :: Community :: Ports :: Packages :: Bugs :: Links :: About :: Donors
man-pages: updated to 4.09
[crossrootfs.git] / start-stop-daemon / makefile
1 CC = cc
2 CFLAGS += -g -Wall
3 PROGRAM = start-stop-daemon
4 SOURCES = start-stop-daemon.c
5
6 $(PROGRAM): $(SOURCES)
7 $(CC) $(CFLAGS) -o $(@) $(SOURCES)
8
9
10 all: $(PROGRAM)
11 clean: ; rm -f $(PROGRAM)
12 force: clean all