Initial commit
This commit is contained in:
16
Assigments/4/Compress/Makefile
Normal file
16
Assigments/4/Compress/Makefile
Normal file
@ -0,0 +1,16 @@
|
||||
COMPILER = gcc
|
||||
C_FLAGS = -Wall -Wextra
|
||||
htags.o: htags.c
|
||||
$(COMPILER) $(C_FLAGS) -c htags.c
|
||||
|
||||
htags: htags.o
|
||||
$(COMPILER) $(C_FLAGS) -o htags htags.c
|
||||
|
||||
test.o: test.c
|
||||
$(COMPILER) $(C_FLAGS) -c test.c
|
||||
|
||||
test: test.o
|
||||
$(COMPILER) $(C_FLAGS) -o test test.o
|
||||
|
||||
run: htags
|
||||
.\htags example.html
|
Reference in New Issue
Block a user