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