mirror of
https://github.com/corellium/projectsandcastle.git
synced 2026-06-14 10:38:15 -04:00
8 lines
116 B
Makefile
8 lines
116 B
Makefile
CFLAGS = -O2 -Wall -I.
|
|
|
|
hcdpack: hcdpack.o
|
|
$(CC) -o $@ $(LDFLAGS) $^ $(LIBRARIES)
|
|
|
|
clean:
|
|
rm -f hcdpack.o hcdpack
|