-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #19 from olebole/Makefiles
Replace Imakefiles by Makefiles
- Loading branch information
Showing
27 changed files
with
168 additions
and
1,337 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
all: xgterm ximtool xtapemon obmsh | ||
|
||
.PHONY: xgterm ximtool xtapemon obmsh | ||
|
||
obm/libobm.a: | ||
$(MAKE) -C obm | ||
|
||
xgterm: obm/libobm.a | ||
$(MAKE) -C xgterm | ||
|
||
ximtool: obm/libobm.a | ||
$(MAKE) -C ximtool | ||
|
||
xtapemon: | ||
$(MAKE) -C xtapemon | ||
|
||
obmsh: | ||
$(MAKE) -C obmsh | ||
|
||
clean: | ||
$(MAKE) -C xtapemon clean | ||
$(MAKE) -C ximtool clean | ||
$(MAKE) -C xgterm clean | ||
$(MAKE) -C obmsh clean | ||
$(MAKE) -C obm clean |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.