File: Makefile

package info (click to toggle)
netconsd 0.4.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 344 kB
  • sloc: ansic: 2,650; cpp: 111; python: 107; makefile: 98
file content (13 lines) | stat: -rw-r--r-- 235 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
CFLAGS ?= -O2 -fPIC
CFLAGS += -D_GNU_SOURCE
CPPFLAGS ?=
LDFLAGS ?=
LIBS = -lpthread

all: netconsblaster

netconsblaster:
	$(CC) $(CPPFLAGS) $(CFLAGS) $(LDFLAGS) netconsblaster.c $(LIBS) -o netconsblaster

clean:
	rm -f netconsblaster