mirror of
https://github.com/facebook/sapling.git
synced 2024-12-26 14:34:34 +03:00
ab3a7cb21f
Summary: In preparation for merging fb-mercurial sources to the Eden repository, move everything from the top-level directory into an `eden/scm` subdirectory.
13 lines
258 B
Makefile
13 lines
258 B
Makefile
LDFLAGS = -llz4 -lcrypto
|
|
CC = gcc
|
|
CFLAGS = -g -std=c99 -Wall -Werror -I.. -I../..
|
|
|
|
all: cdatapack_dump cdatapack_get
|
|
|
|
cdatapack_dump: cdatapack_dump.o cdatapack.o
|
|
|
|
cdatapack_get: cdatapack_get.o cdatapack.o
|
|
|
|
%.o: %.c cdatapack.h
|
|
$(CC) $(CFLAGS) -c -o $@ $<
|