mirror of
https://github.com/reactos/ccache.git
synced 2025-02-04 10:36:07 +00:00
12 lines
198 B
Makefile
12 lines
198 B
Makefile
CFLAGS=-W -Wall -g
|
|
CC=gcc
|
|
|
|
OBJS= ccache.o mdfour.o hash.o execute.o util.o args.o
|
|
HEADERS = ccache.h mdfour.h
|
|
|
|
ccache: $(OBJS) $(HEADERS)
|
|
$(CC) -o $@ $(OBJS)
|
|
|
|
clean:
|
|
/bin/rm -f $(OBJS) *~ ccache
|