File: makefile

package info (click to toggle)
ampliconnoise 1.29-15
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 6,296 kB
  • sloc: ansic: 18,085; sh: 2,901; perl: 2,089; makefile: 238
file content (16 lines) | stat: -rwxr-xr-x 283 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
CC     = cc
CFLAGS += -O3
EFLAGS = $(LDFLAGS)
EFILE  = FCluster
LIBS   = -lm 
OBJS   = FCluster.o 

$(EFILE) : $(OBJS)
	@echo "linking..."
	$(CC) $(EFLAGS) -o $(EFILE) $(OBJS) $(LIBS)

$(OBJS) : FCluster.c FCluster.h
	$(CC) $(CPPFLAGS) $(CFLAGS) -c $*.c

clean: 
	rm -rf *o FCluster