mirror of
https://github.com/GnoConsortium/gno.git
synced 2024-11-06 04:04:41 +00:00
20 lines
367 B
Plaintext
20 lines
367 B
Plaintext
|
# Create the test environment for tr
|
||
|
|
||
|
# Compile and load flags passed to occ
|
||
|
# -v: verbose
|
||
|
# -I: add directory to header path
|
||
|
CFLAGS += -v -I /usr/include
|
||
|
LDFLAGS += -v
|
||
|
|
||
|
# Default target, "all," generates the files
|
||
|
all: file2.bin1 genbin
|
||
|
|
||
|
# Files depend upon program
|
||
|
file2.bin1: genbin
|
||
|
./genbin
|
||
|
|
||
|
# Remove intermediate files
|
||
|
clean:
|
||
|
$(RM) -f *.o
|
||
|
$(RM) -f *.root
|