File: Makefile

package info (click to toggle)
base-passwd 2.0.3.3
  • links: PTS
  • area: main
  • in suites: hamm, slink
  • size: 80 kB
  • ctags: 36
  • sloc: ansic: 435; makefile: 53; sh: 6
file content (12 lines) | stat: -rw-r--r-- 257 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
# Your basic brain-dead makefile.  Not too smart, but it does the job.

CC=gcc -DMISERABLE_FTP_HACK
CFLAGS = -g -Wall
LDFLAGS =

update-passwd: update-passwd.o
	$(CC) $(LDFLAGS) -o update-passwd update-passwd.o

clean:
	rm -f update-passwd update-passwd.o