summaryrefslogtreecommitdiffstats
path: root/Makefile
blob: f1f231a3eb6cc087feb0639d82bc7cfb0633e22b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14

CC ?= gcc
LD ?= gcc

CFLAGS ?= -Werror -Wall -g -DDEBUG
LDFLAGS ?= 

aports-cache-objs := aports-cache.o

%.o: %.c
	$(CC) $(CFLAGS) $(CFLAGS_$(notdir $@)) -c -o $@ $<

aports-cache: aports-cache.o
	$(CC) $(LDFLAGS) -o $@ $(LIBS_$(notdir $@)) $<