File: Makefile

package info (click to toggle)
givaro 4.1.1-2
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 4,380 kB
  • sloc: cpp: 28,663; makefile: 1,061; sh: 384; csh: 196
file content (11 lines) | stat: -rw-r--r-- 171 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
CXXFLAGS:= $(shell givaro-config --cflags)
LDLIBS	:= $(shell givaro-config --libs)

SRCS	:= $(wildcard *.C)
TARGS	:= $(SRCS:%.C=%)


all: $(TARGS)

clean:
	rm -f $(TARGS)