File: Makefile

package info (click to toggle)
apt-spy 3.1-16
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 312 kB
  • ctags: 55
  • sloc: ansic: 826; makefile: 53; sh: 6
file content (11 lines) | stat: -rw-r--r-- 241 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
CC = cc
CFILES = benchmark.c  file.c  protocol.c  main.c  parse.c  update.c
CFLAGS = -lcurl -Wall -pedantic-errors
DEBUG = -g
TARGET = apt-spy

$(TARGET) : $(CFILES)
	$(CC) -o $(TARGET) $(CFLAGS) $(DEBUG) $(CFILES)

clean :
	rm -f $(TARGET)