[go: up one dir, main page]

File: makefile

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

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

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

clean:
	rm -rf *.o PyroDist