File: Makefile

package info (click to toggle)
flash 1.2.11-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, forky, sid, trixie
  • size: 932 kB
  • sloc: ansic: 3,549; sh: 36; makefile: 13
file content (20 lines) | stat: -rw-r--r-- 545 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#
# Makefile for FLASH.  Process this using GNU make by simply running
#
# $ make
#
# You may set CPPFLAGS, LDFLAGS, or CC in the environment if you would like to
# use a non-default compiler, extra preprocessor flags (e.g. to find headers),
# or extra linker flags (e.g. to find libraries).

CFLAGS += -O2 -Wall -std=c99 -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64
LDLIBS := -lz -lpthread
OBJ    := combine_reads.o flash.o iostream.o read_io.o read_queue.o read_util.o util.o
EXE    := flash

$(EXE):$(OBJ)

clean:
	rm -f $(OBJ) $(EXE)

.PHONY: clean