File: Makefile

package info (click to toggle)
posixtestsuite 1.5.2-9
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 14,440 kB
  • sloc: ansic: 117,313; xml: 7,497; sh: 1,148; makefile: 281; perl: 34
file content (10 lines) | stat: -rw-r--r-- 167 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
include ../Makefile.inc

SRCS=$(wildcard *.c)
TARGETS=$(patsubst %.c,%,$(SRCS))
CFLAGS+=-Wall -D_GNU_SOURCE -g -I../include

all:$(TARGETS)

clean:
	rm -rf $(TARGETS)