Altered keyboard driver to correctly support Unicode
[tpg/acess2.git] / Usermode / Applications / init_src / Makefile
index 0ec7739..9331f6e 100644 (file)
@@ -14,11 +14,14 @@ OBJ = main.o
 all: $(BIN)
 
 clean:
-       $(RM) $(BIN) $(OBJ)
+       $(RM) $(BIN) $(OBJ) $(BIN).dsm
 
 $(BIN): $(OBJ) Makefile
-       $(LD) $(LDFLAGS) $(OBJ) -o $(BIN)
+       @echo --- ld -o $(BIN)
+       @$(LD) $(LDFLAGS) $(OBJ) -o $(BIN)
+       $(OBJDUMP) -d $(BIN) > $(BIN).dsm
        cp $(BIN) $(DISTROOT)/SBin/
 
 %.o: %.c
-       $(CC) $(CFLAGS) -c $< -o $@
+       @echo --- cc -o $@
+       @$(CC) $(CFLAGS) -c $< -o $@

UCC git Repository :: git.ucc.asn.au