File: Makefile

package info (click to toggle)
neverball 1.5.4-5
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 94,644 kB
  • sloc: ansic: 22,125; makefile: 438; sh: 150; xml: 129; awk: 69
file content (13 lines) | stat: -rw-r--r-- 254 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
CFLAGS := -Wall -g -ansi -pedantic

CURVE_TARG := curve$(EXT)
CURVE_SRCS := curve.c
CURVE_OBJS := $(CURVE_SRCS:%.c=%.o)

all: $(CURVE_TARG)

$(CURVE_TARG): $(CURVE_OBJS)
	$(CC) $(CFLAGS) -o $@ $(CURVE_OBJS) -lm

clean:
	$(RM) $(CURVE_TARG) $(CURVE_OBJS)