mirror of
https://github.com/GnoConsortium/gno.git
synced 2024-11-18 19:09:31 +00:00
20 lines
472 B
Plaintext
20 lines
472 B
Plaintext
|
1 # Create the test environment for tr
|
||
|
|
||
|
2 # Compile and load flags passed to occ
|
||
|
3 # -v: verbose
|
||
|
4 # -I: add directory to header path
|
||
|
5 CFLAGS += -v -I /usr/include
|
||
|
6 LDFLAGS += -v
|
||
|
|
||
|
7 # Default target, "all," generates the files
|
||
|
8 all: file2.bin1 genbin
|
||
|
|
||
|
9 # Files depend upon program
|
||
|
10 file2.bin1: genbin
|
||
|
11 ./genbin
|
||
|
|
||
|
12 # Remove intermediate files
|
||
|
13 clean:
|
||
|
14 $(RM) -f *.o
|
||
|
15 $(RM) -f *.root
|