makewiz 0.8.0

MakeWiz is a command line tool that generates a Makefile based on the files in your directory
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
#include "Bike.hpp"
#include "Car.hpp"

int main() {
    Bike bike;
    Car car;

    bike.getName();
    car.getName();

    return 0;
}