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
CommitLineData
487cc3be
VM
1CC = cc
2CFLAGS += -g -Wall
3PROGRAM = start-stop-daemon
4SOURCES = start-stop-daemon.c
5
6$(PROGRAM): $(SOURCES)
7 $(CC) $(CFLAGS) -o $(@) $(SOURCES)
8
9
10all: $(PROGRAM)
11clean: ; rm -f $(PROGRAM)
12force: clean all