File: Makefile

package info (click to toggle)
netdiag 0.7-4
  • links: PTS
  • area: main
  • in suites: woody
  • size: 1,468 kB
  • ctags: 1,279
  • sloc: ansic: 12,973; makefile: 289; awk: 130; sh: 71
file content (11 lines) | stat: -rw-r--r-- 167 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
CC=gcc
INCLUDE=-I.
CCFLAGS=-D_LIBC
GSRC=getopt.c getopt1.c
GOBJECTS=getopt.o getopt1.o

all:	getopt.h $(GSRC)
	$(CC) $(INCLUDE) $(CCFLAGS) -c $(GSRC)

clean:
	-rm *.o