Skip to content

Commit

Permalink
Tiny changes in makefile (to avoid confusion with previous HEAAN lib)
Browse files Browse the repository at this point in the history
  • Loading branch information
HanKyoohyung committed Sep 21, 2018
1 parent 36dc57c commit b92ecda
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions lib/makefile
Original file line number Diff line number Diff line change
Expand Up @@ -38,13 +38,13 @@ endif
# Add inputs and outputs from these tool invocations to the build variables

# All Target
all: libHEAAN.a
all: libFRNSHEAAN.a

# Tool invocations
libHEAAN.a: $(OBJS) $(USER_OBJS)
libFRNSHEAAN.a: $(OBJS) $(USER_OBJS)
@echo 'Building target: $@'
@echo 'Invoking: GCC Archiver'
ar -r "libHEAAN.a" $(OBJS) $(USER_OBJS) $(LIBS)
ar -r "libFRNSHEAAN.a" $(OBJS) $(USER_OBJS) $(LIBS)
@echo 'Finished building target: $@'
@echo ' '

Expand Down
4 changes: 2 additions & 2 deletions run/makefile
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@ all: FRNSHEAAN
FRNSHEAAN:
@echo 'Building target: $@'
@echo 'Invoking: MacOS X C++ Linker'
g++ -std=c++11 -pthread -o "FRNSHEAAN" main.cpp ../lib/libHEAAN.a -I/../src/
g++ -std=c++11 -pthread -o "FRNSHEAAN" main.cpp ../lib/libFRNSHEAAN.a -I/../src/
@echo 'Finished building target: $@'
@echo ' '

# Other Targets
clean:
rm -rf FRNSHEAAN
rm -rf FRNSHEAAN

0 comments on commit b92ecda

Please sign in to comment.